aboutsummaryrefslogtreecommitdiff
path: root/semantic/src/definitions/collections/breadcrumb.less
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-12-14 23:29:56 -0800
committerFuwn <[email protected]>2020-12-14 23:29:56 -0800
commit002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch)
tree428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/src/definitions/collections/breadcrumb.less
parent:star: (diff)
downloadme-rewrite-angular.tar.xz
me-rewrite-angular.zip
Diffstat (limited to 'semantic/src/definitions/collections/breadcrumb.less')
-rw-r--r--semantic/src/definitions/collections/breadcrumb.less122
1 files changed, 0 insertions, 122 deletions
diff --git a/semantic/src/definitions/collections/breadcrumb.less b/semantic/src/definitions/collections/breadcrumb.less
deleted file mode 100644
index df6f979..0000000
--- a/semantic/src/definitions/collections/breadcrumb.less
+++ /dev/null
@@ -1,122 +0,0 @@
-/*!
- * # Fomantic-UI - Breadcrumb
- * http://github.com/fomantic/Fomantic-UI/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-/*******************************
- Theme
-*******************************/
-
-@type : 'collection';
-@element : 'breadcrumb';
-
-@import (multiple) '../../theme.config';
-
-
-/*******************************
- Breadcrumb
-*******************************/
-
-.ui.breadcrumb {
- line-height: @lineHeight;
- display: @display;
- margin: @verticalMargin 0;
- vertical-align: @verticalAlign;
-}
-.ui.breadcrumb:first-child {
- margin-top: 0;
-}
-.ui.breadcrumb:last-child {
- margin-bottom: 0;
-}
-
-/*******************************
- Content
-*******************************/
-
-/* Divider */
-.ui.breadcrumb .divider {
- display: inline-block;
- opacity: @dividerOpacity;
- margin: 0 @dividerSpacing 0;
-
- font-size: @dividerSize;
- color: @dividerColor;
- vertical-align: @dividerVerticalAlign;
-}
-
-/* Link */
-.ui.breadcrumb a {
- color: @linkColor;
-}
-.ui.breadcrumb a:hover {
- color: @linkHoverColor;
-}
-
-
-/* Icon Divider */
-.ui.breadcrumb .icon.divider {
- font-size: @iconDividerSize;
- vertical-align: @iconDividerVerticalAlign;
-}
-
-/* Section */
-.ui.breadcrumb a.section {
- cursor: pointer;
-}
-.ui.breadcrumb .section {
- display: inline-block;
- margin: @sectionMargin;
- padding: @sectionPadding;
-}
-
-/* Loose Coupling */
-.ui.breadcrumb.segment {
- display: inline-block;
- padding: @segmentPadding;
-}
-
-& when (@variationBreadcrumbInverted) {
- /* Inverted */
- .ui.inverted.breadcrumb {
- color: @invertedColor;
- }
- .ui.inverted.breadcrumb > .active.section {
- color: @invertedActiveColor;
- }
- .ui.inverted.breadcrumb > .divider {
- color: @invertedDividerColor;
- }
-}
-
-/*******************************
- States
-*******************************/
-
-.ui.breadcrumb .active.section {
- font-weight: @activeFontWeight;
-}
-
-
-/*******************************
- Variations
-*******************************/
-
-.ui.breadcrumb {
- font-size: @medium;
-}
-& when not (@variationBreadcrumbSizes = false) {
- each(@variationBreadcrumbSizes, {
- @s: @@value;
- .ui.@{value}.breadcrumb {
- font-size: @s;
- }
- })
-}
-
-.loadUIOverrides();