diff --git a/.stylelintrc.js b/.stylelintrc.js index 1dacba7ab0..dac9dd9fcb 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -11,12 +11,15 @@ module.exports = { 'at-rule-empty-line-before': null, 'at-rule-name-case': null, 'at-rule-no-unknown': null, + 'block-no-empty': null, 'color-function-notation': 'legacy', 'color-hex-case': 'lower', 'declaration-colon-newline-after': null, // handled by Prettier + 'font-family-no-missing-generic-family-keyword': null, 'function-no-unknown': null, 'import-notation': null, indentation: null, // handled by Prettier + 'keyframes-name-pattern': null, linebreaks: 'unix', 'max-line-length': null, 'no-descending-specificity': null, @@ -39,21 +42,7 @@ module.exports = { // TODO rules to be removed/fixed in v2.10.0 as fixes are not compatible with IE11 'alpha-value-notation': 'number', // https://caniuse.com/mdn-css_properties_opacity_percentages 'selector-not-notation': null, // https://caniuse.com/css-not-sel-list - - // TODO - 'keyframes-name-pattern': null, // 50 errors - 'block-no-empty': null, // 25 errors - 'selector-no-vendor-prefix': null, // 19 errors - 'selector-class-pattern': null, // 19 errors - 'declaration-block-no-redundant-longhand-properties': null, // 12 errors - 'value-no-vendor-prefix': null, // 9 errors - 'font-family-no-missing-generic-family-keyword': null, // 8 errors - 'shorthand-property-no-redundant-values': null, // 5 errors - 'declaration-block-no-duplicate-properties': null, // 2 errors - 'font-family-no-duplicate-names': null, // 2 errors - 'function-linear-gradient-no-nonstandard-direction': null, // 1 error - 'at-rule-no-vendor-prefix': null, // 1 error - 'declaration-block-no-shorthand-property-overrides': null, // 1 error + 'selector-no-vendor-prefix': null, }, reportNeedlessDisables: true, }; diff --git a/src/definitions/collections/breadcrumb.less b/src/definitions/collections/breadcrumb.less index 4704acc591..face26f4c6 100755 --- a/src/definitions/collections/breadcrumb.less +++ b/src/definitions/collections/breadcrumb.less @@ -42,7 +42,7 @@ .ui.breadcrumb .divider { display: inline-block; opacity: @dividerOpacity; - margin: 0 @dividerSpacing 0; + margin: 0 @dividerSpacing; font-size: @dividerSize; color: @dividerColor; vertical-align: @dividerVerticalAlign; diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index da09e3181a..6f491709be 100755 --- a/src/definitions/collections/grid.less +++ b/src/definitions/collections/grid.less @@ -23,8 +23,7 @@ .ui.grid { display: flex; - flex-direction: row; - flex-wrap: wrap; + flex-flow: row wrap; align-items: stretch; padding: 0; } @@ -34,10 +33,7 @@ ----------------------- */ .ui.grid { - margin-top: -(@rowSpacing / 2); - margin-bottom: -(@rowSpacing / 2); - margin-left: -(@gutterWidth / 2); - margin-right: -(@gutterWidth / 2); + margin: -(@rowSpacing / 2) -(@gutterWidth / 2); } & when (@variationGridRelaxed) { .ui.relaxed.grid { @@ -84,8 +80,7 @@ .ui.grid > .row { position: relative; display: flex; - flex-direction: row; - flex-wrap: wrap; + flex-flow: row wrap; justify-content: inherit; align-items: stretch; width: 100% !important; @@ -1696,7 +1691,7 @@ .ui.stackable.grid > .column:not(.row), .ui.grid > .stackable.stackable.stackable.row > .column { width: 100% !important; - margin: 0 0 !important; + margin: 0 !important; box-shadow: none !important; padding: (@stackableRowSpacing / 2) (@stackableGutter / 2); } @@ -1908,10 +1903,7 @@ /* Row */ .ui.ui.ui.compact.grid > .row { - padding-top: (@compactRowSpacing / 2); - padding-bottom: (@compactRowSpacing / 2); - padding-left: 0; - padding-right: 0; + padding: (@compactRowSpacing / 2) 0; } /* Columns */ @@ -1955,10 +1947,7 @@ /* Row */ .ui.ui.ui[class*="very compact"].grid > .row { - padding-top: (@veryCompactRowSpacing / 2); - padding-bottom: (@veryCompactRowSpacing / 2); - padding-left: 0; - padding-right: 0; + padding: (@veryCompactRowSpacing / 2) 0; } /* Columns */ diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 532626cfdf..6e6b81f21b 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -962,13 +962,11 @@ Floated Menu / Item } .ui.secondary.pointing.menu .item { - border-bottom-color: transparent; - border-bottom-style: solid; + border-bottom: @secondaryPointingBorderWidth solid transparent; border-radius: 0; align-self: flex-end; margin: 0 0 -@secondaryPointingBorderWidth; padding: @secondaryPointingItemVerticalPadding @secondaryPointingItemHorizontalPadding; - border-bottom-width: @secondaryPointingBorderWidth; transition: @secondaryItemTransition; } .ui.secondary.pointing.menu .ui.dropdown .menu .item { @@ -1034,17 +1032,13 @@ Floated Menu / Item /* Vertical Pointing */ .ui.secondary.vertical.pointing.menu { border-bottom-width: 0; - border-right-width: @secondaryPointingBorderWidth; - border-right-style: solid; - border-right-color: @secondaryPointingBorderColor; + border-right: @secondaryPointingBorderWidth solid @secondaryPointingBorderColor; } .ui.secondary.vertical.pointing.menu .item { border-bottom: none; - border-right-style: solid; - border-right-color: transparent; + border-right: @secondaryPointingBorderWidth solid transparent; border-radius: 0 !important; margin: @secondaryVerticalPointingItemMargin; - border-right-width: @secondaryPointingBorderWidth; } /* Vertical Active */ @@ -1590,6 +1584,7 @@ Floated Menu / Item .ui.compact.vertical.menu { & when (@supportIE) { /* IE hack to make dropdown icons appear inline */ + // stylelint-disable-next-line value-no-vendor-prefix display: -ms-inline-flexbox !important; } diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 4799d59fb8..56d9cc29fb 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -1814,7 +1814,6 @@ & when (@variationTableStuckHead) or (@variationTableStuckFoot) { .ui.head.stuck.table > thead, .ui.foot.stuck.table > tfoot { - position: -webkit-sticky; position: sticky; z-index: @stuckZIndex; } @@ -1854,7 +1853,6 @@ border-left: 0; & th:first-child, td:first-child { - position: -webkit-sticky; position: sticky; left: 0; border-left: @cellBorder; @@ -1872,7 +1870,6 @@ border-right: 0; & th:last-child, td:last-child { - position: -webkit-sticky; position: sticky; right: 0; border-right: @cellBorder; diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 9201dfe1d0..faa1fb6870 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -704,7 +704,7 @@ .ui.compact.labeled.icon.buttons .button > .icon, .ui.compact.labeled.icon.button > .icon { - padding: @compactVerticalPadding 0 @compactVerticalPadding 0; + padding: @compactVerticalPadding 0; } } @@ -1005,7 +1005,7 @@ border-bottom-left-radius: inherit; text-align: center; animation: none; - padding: @verticalPadding 0 @verticalPadding 0; + padding: @verticalPadding 0; margin: @labeledIconMargin; width: @labeledIconWidth; background-color: @labeledIconBackgroundColor; diff --git a/src/definitions/elements/divider.less b/src/definitions/elements/divider.less index 0c557b7b27..94a6652a8b 100755 --- a/src/definitions/elements/divider.less +++ b/src/definitions/elements/divider.less @@ -232,10 +232,7 @@ .ui.divider.inverted, .ui.divider.inverted::after, .ui.divider.inverted::before { - border-top-color: @invertedShadowColor !important; - border-left-color: @invertedShadowColor !important; - border-bottom-color: @invertedHighlightColor !important; - border-right-color: @invertedHighlightColor !important; + border-color: @invertedShadowColor @invertedHighlightColor @invertedHighlightColor @invertedShadowColor !important; } } diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less index 525555afba..6f94a2248f 100755 --- a/src/definitions/elements/header.less +++ b/src/definitions/elements/header.less @@ -448,7 +448,7 @@ .ui.attached.header { background: @attachedBackground; padding: @attachedVerticalPadding @attachedHorizontalPadding; - margin: 0 @attachedOffset 0 @attachedOffset; + margin: 0 @attachedOffset; box-shadow: @attachedBoxShadow; border: @attachedBorder; border-radius: 0; diff --git a/src/definitions/elements/image.less b/src/definitions/elements/image.less index 0a26119217..348e3fac18 100755 --- a/src/definitions/elements/image.less +++ b/src/definitions/elements/image.less @@ -256,8 +256,7 @@ img.ui.image { } .ui.centered.images { display: flex; - flex-direction: row; - flex-wrap: wrap; + flex-flow: row wrap; align-items: stretch; justify-content: center; } @@ -297,7 +296,7 @@ img.ui.image { .ui.images { font-size: 0; - margin: 0 -@imageHorizontalMargin 0; + margin: 0 -@imageHorizontalMargin; } .ui.images .image, diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less index 8ddc2025c0..338e60a3be 100755 --- a/src/definitions/elements/label.less +++ b/src/definitions/elements/label.less @@ -899,7 +899,6 @@ a.ui.active.label:hover::before { .ui[class*="bottom pointing"].label::before, .ui[class*="pointing below"].label::before { border-width: 0 @borderWidth @borderWidth 0; - top: auto; right: auto; transform: translateX(-50%) translateY(-50%) rotate(45deg); top: 100%; diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less index 6c4a41336b..3f44425578 100755 --- a/src/definitions/elements/step.less +++ b/src/definitions/elements/step.less @@ -58,8 +58,7 @@ position: relative; display: flex; flex: 1 0 auto; - flex-wrap: wrap; - flex-direction: row; + flex-flow: row wrap; vertical-align: middle; align-items: center; justify-content: @justifyContent; diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index ddffc671ee..956c388097 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -435,7 +435,6 @@ select.ui.dropdown { overscroll-behavior: @overscrollBehavior; backface-visibility: hidden; border-top-width: 0 !important; - width: auto; outline: none; margin: 0 -@menuBorderWidth; min-width: @menuMinWidth; @@ -557,7 +556,6 @@ select.ui.dropdown { /* User addition item */ .ui.dropdown > .menu > .stuck.addition.item:first-child { - position: -webkit-sticky; position: sticky; top: 0; box-shadow: @selectionVisibleBoxShadow; @@ -1412,6 +1410,7 @@ select.ui.dropdown { position: absolute; & when (@supportIE) { /* IE hack to make dropdown icons appear inline */ + // stylelint-disable-next-line value-no-vendor-prefix display: -ms-inline-flexbox !important; } @@ -1614,7 +1613,7 @@ select.ui.dropdown { .ui.left.pointing.dropdown > .menu::after { top: 1em; left: @pointingArrowOffset; - margin: 0 0 0 0; + margin: 0; transform: rotate(-45deg); } .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu { @@ -1626,7 +1625,7 @@ select.ui.dropdown { top: 1em; left: auto; right: @pointingArrowOffset; - margin: 0 0 0 0; + margin: 0; transform: rotate(135deg); } @@ -1641,7 +1640,7 @@ select.ui.dropdown { top: 1em; left: auto; right: @pointingArrowOffset; - margin: 0 0 0 0; + margin: 0; transform: rotate(135deg); } diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less index 1f6cd0881c..6e342bdae4 100755 --- a/src/definitions/views/card.less +++ b/src/definitions/views/card.less @@ -530,8 +530,7 @@ .ui.horizontal.cards > .card, .ui.card.horizontal { - flex-direction: row; - flex-wrap: wrap; + flex-flow: row wrap; min-width: @horizontalMinWidth; width: @horizontalWidth; max-width: 100%; diff --git a/src/definitions/views/statistic.less b/src/definitions/views/statistic.less index 1d6b7fd662..ad28cd548d 100755 --- a/src/definitions/views/statistic.less +++ b/src/definitions/views/statistic.less @@ -371,7 +371,7 @@ } .ui.stackable.statistics > .statistic { width: 100% !important; - margin: 0 0 !important; + margin: 0 !important; padding: (@stackableRowSpacing / 2) (@stackableGutter / 2) !important; } } diff --git a/src/themes/amazon/elements/button.overrides b/src/themes/amazon/elements/button.overrides index 56ed17779f..b79b3b29af 100644 --- a/src/themes/amazon/elements/button.overrides +++ b/src/themes/amazon/elements/button.overrides @@ -1,5 +1,5 @@ .ui.button { - background-image: linear-gradient(center top, #f7f8fa, #e7e9ec) repeat scroll 0 0 rgba(0, 0, 0, 0); + background: linear-gradient(to bottom, #f7f8fa, #e7e9ec) repeat scroll 0 0 rgba(0, 0, 0, 0); } .ui.primary.button { diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index b5e36f051c..f04781f2c5 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -343,7 +343,7 @@ @textMenuMargin: @relativeMedium -(@textMenuItemSpacing); @textMenuItemColor: @mutedTextColor; @textMenuItemFontWeight: @normal; -@textMenuItemMargin: 0 0; +@textMenuItemMargin: 0; @textMenuItemPadding: @relative5px @textMenuItemSpacing; @textMenuItemTransition: opacity @defaultDuration @defaultEasing; diff --git a/src/themes/default/elements/button.variables b/src/themes/default/elements/button.variables index 1baa92c180..f84f44ac8b 100644 --- a/src/themes/default/elements/button.variables +++ b/src/themes/default/elements/button.variables @@ -75,8 +75,8 @@ @groupBoxShadow: none; @groupButtonBoxShadow: @boxShadow; @verticalBoxShadow: none; -@groupButtonOffset: 0 0 0 0; -@verticalGroupOffset: 0 0 0 0; +@groupButtonOffset: 0; +@verticalGroupOffset: 0; /* ------------------- States diff --git a/src/themes/default/elements/segment.variables b/src/themes/default/elements/segment.variables index 671c56c8f6..f30b6a582a 100644 --- a/src/themes/default/elements/segment.variables +++ b/src/themes/default/elements/segment.variables @@ -29,7 +29,7 @@ @groupedBoxShadow: @boxShadow; @groupedBorderRadius: @borderRadius; -@nestedGroupMargin: @verticalMargin @verticalMargin; +@nestedGroupMargin: @verticalMargin; @groupedSegmentBorder: none; @groupedSegmentDivider: @border; diff --git a/src/themes/default/globals/reset.overrides b/src/themes/default/globals/reset.overrides index 93d5d68da8..abceaf4138 100755 --- a/src/themes/default/globals/reset.overrides +++ b/src/themes/default/globals/reset.overrides @@ -62,6 +62,8 @@ hr { */ pre { + // https://github.com/necolas/normalize.css/issues/519 + // stylelint-disable-next-line font-family-no-duplicate-names font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } @@ -105,6 +107,8 @@ strong { code, kbd, samp { + // https://github.com/necolas/normalize.css/issues/519 + // stylelint-disable-next-line font-family-no-duplicate-names font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } diff --git a/src/themes/default/modules/dropdown.variables b/src/themes/default/modules/dropdown.variables index 4eb80072a1..0cdf2e13d5 100755 --- a/src/themes/default/modules/dropdown.variables +++ b/src/themes/default/modules/dropdown.variables @@ -28,7 +28,7 @@ /* Menu */ @menuBackground: #fff; @menuMargin: 0; -@menuPadding: 0 0; +@menuPadding: 0; @menuTop: 100%; @menuTextAlign: left; @@ -237,7 +237,7 @@ @searchWidescreenMaxMenuHeight: @selectionWidescreenMaxMenuHeight; /* Inline */ -@inlineIconMargin: 0 @relative3px 0 @relative3px; +@inlineIconMargin: 0 @relative3px; @inlineTextColor: inherit; @inlineTextFontWeight: @bold; @inlineMenuDistance: @relative3px; diff --git a/src/themes/default/modules/flyout.variables b/src/themes/default/modules/flyout.variables index c7178d9e45..9728ecce63 100644 --- a/src/themes/default/modules/flyout.variables +++ b/src/themes/default/modules/flyout.variables @@ -36,7 +36,7 @@ /* Actions */ @actionBorder: 1px solid @borderColor; @actionBackground: @offWhite; -@actionPadding: 1rem 1rem; +@actionPadding: 1rem; @actionAlign: right; @buttonDistance: 0.75em; diff --git a/src/themes/default/modules/modal.variables b/src/themes/default/modules/modal.variables index 5236f6865e..586850b84d 100755 --- a/src/themes/default/modules/modal.variables +++ b/src/themes/default/modules/modal.variables @@ -61,7 +61,7 @@ /* Modal Actions */ @actionBorder: 1px solid @borderColor; @actionBackground: @offWhite; -@actionPadding: 1rem 1rem; +@actionPadding: 1rem; @actionAlign: right; @buttonDistance: 0.75em; @@ -91,11 +91,11 @@ @largeMonitorWidth: 900px; @widescreenMonitorWidth: 950px; -@mobileMargin: 0 0 0 0; -@tabletMargin: 0 0 0 0; -@computerMargin: 0 0 0 0; -@largeMonitorMargin: 0 0 0 0; -@widescreenMonitorMargin: 0 0 0 0; +@mobileMargin: 0; +@tabletMargin: 0; +@computerMargin: 0; +@largeMonitorMargin: 0; +@widescreenMonitorMargin: 0; @fullScreenWidth: 95%; @fullScreenOffset: ((100% - @fullScreenWidth) / 2); @@ -160,11 +160,11 @@ @miniLargeMonitorWidth: (@largeMonitorWidth * @miniRatio); @miniWidescreenMonitorWidth: (@widescreenMonitorWidth * @miniRatio); -@miniMobileMargin: 0 0 0 0; -@miniTabletMargin: 0 0 0 0; -@miniComputerMargin: 0 0 0 0; -@miniLargeMonitorMargin: 0 0 0 0; -@miniWidescreenMonitorMargin: 0 0 0 0; +@miniMobileMargin: 0; +@miniTabletMargin: 0; +@miniComputerMargin: 0; +@miniLargeMonitorMargin: 0; +@miniWidescreenMonitorMargin: 0; @tinyHeaderSize: 1.3em; @tinyMobileWidth: @mobileWidth; @@ -173,11 +173,11 @@ @tinyLargeMonitorWidth: (@largeMonitorWidth * @tinyRatio); @tinyWidescreenMonitorWidth: (@widescreenMonitorWidth * @tinyRatio); -@tinyMobileMargin: 0 0 0 0; -@tinyTabletMargin: 0 0 0 0; -@tinyComputerMargin: 0 0 0 0; -@tinyLargeMonitorMargin: 0 0 0 0; -@tinyWidescreenMonitorMargin: 0 0 0 0; +@tinyMobileMargin: 0; +@tinyTabletMargin: 0; +@tinyComputerMargin: 0; +@tinyLargeMonitorMargin: 0; +@tinyWidescreenMonitorMargin: 0; @smallHeaderSize: 1.3em; @smallMobileWidth: @mobileWidth; @@ -186,11 +186,11 @@ @smallLargeMonitorWidth: (@largeMonitorWidth * @smallRatio); @smallWidescreenMonitorWidth: (@widescreenMonitorWidth * @smallRatio); -@smallMobileMargin: 0 0 0 0; -@smallTabletMargin: 0 0 0 0; -@smallComputerMargin: 0 0 0 0; -@smallLargeMonitorMargin: 0 0 0 0; -@smallWidescreenMonitorMargin: 0 0 0 0; +@smallMobileMargin: 0; +@smallTabletMargin: 0; +@smallComputerMargin: 0; +@smallLargeMonitorMargin: 0; +@smallWidescreenMonitorMargin: 0; @largeHeaderSize: 1.6em; @largeMobileWidth: @mobileWidth; @@ -199,11 +199,11 @@ @largeLargeMonitorWidth: (@largeMonitorWidth * @largeRatio); @largeWidescreenMonitorWidth: (@widescreenMonitorWidth * @largeRatio); -@largeMobileMargin: 0 0 0 0; -@largeTabletMargin: 0 0 0 0; -@largeComputerMargin: 0 0 0 0; -@largeLargeMonitorMargin: 0 0 0 0; -@largeWidescreenMonitorMargin: 0 0 0 0; +@largeMobileMargin: 0; +@largeTabletMargin: 0; +@largeComputerMargin: 0; +@largeLargeMonitorMargin: 0; +@largeWidescreenMonitorMargin: 0; @bigHeaderSize: 1.6em; @bigMobileWidth: @mobileWidth; @@ -212,11 +212,11 @@ @bigLargeMonitorWidth: (@largeMonitorWidth * @bigRatio); @bigWidescreenMonitorWidth: (@widescreenMonitorWidth * @bigRatio); -@bigMobileMargin: 0 0 0 0; -@bigTabletMargin: 0 0 0 0; -@bigComputerMargin: 0 0 0 0; -@bigLargeMonitorMargin: 0 0 0 0; -@bigWidescreenMonitorMargin: 0 0 0 0; +@bigMobileMargin: 0; +@bigTabletMargin: 0; +@bigComputerMargin: 0; +@bigLargeMonitorMargin: 0; +@bigWidescreenMonitorMargin: 0; @hugeHeaderSize: 1.6em; @hugeMobileWidth: @mobileWidth; @@ -225,11 +225,11 @@ @hugeLargeMonitorWidth: (@largeMonitorWidth * @hugeRatio); @hugeWidescreenMonitorWidth: (@widescreenMonitorWidth * @hugeRatio); -@hugeMobileMargin: 0 0 0 0; -@hugeTabletMargin: 0 0 0 0; -@hugeComputerMargin: 0 0 0 0; -@hugeLargeMonitorMargin: 0 0 0 0; -@hugeWidescreenMonitorMargin: 0 0 0 0; +@hugeMobileMargin: 0; +@hugeTabletMargin: 0; +@hugeComputerMargin: 0; +@hugeLargeMonitorMargin: 0; +@hugeWidescreenMonitorMargin: 0; @massiveHeaderSize: 1.8em; @massiveMobileWidth: @mobileWidth; @@ -238,11 +238,11 @@ @massiveLargeMonitorWidth: (@largeMonitorWidth * @massiveRatio); @massiveWidescreenMonitorWidth: (@widescreenMonitorWidth * @massiveRatio); -@massiveMobileMargin: 0 0 0 0; -@massiveTabletMargin: 0 0 0 0; -@massiveComputerMargin: 0 0 0 0; -@massiveLargeMonitorMargin: 0 0 0 0; -@massiveWidescreenMonitorMargin: 0 0 0 0; +@massiveMobileMargin: 0; +@massiveTabletMargin: 0; +@massiveComputerMargin: 0; +@massiveLargeMonitorMargin: 0; +@massiveWidescreenMonitorMargin: 0; /* ------------------- Inverted diff --git a/src/themes/default/views/card.variables b/src/themes/default/views/card.variables index 1745a2d3a4..82855e8376 100644 --- a/src/themes/default/views/card.variables +++ b/src/themes/default/views/card.variables @@ -59,7 +59,7 @@ @contentDivider: @borderWidth solid @internalBorderColor; @contentMargin: 0; @contentBackground: none; -@contentPadding: 1em 1em; +@contentPadding: 1em; @contentFontSize: 1em; @contentBorderRadius: 0; @contentBoxShadow: none; @@ -125,7 +125,7 @@ @extraWidth: auto; @extraTop: 0; @extraLeft: 0; -@extraMargin: 0 0; +@extraMargin: 0; @extraPadding: 0.75em 1em; @extraBoxShadow: none; @extraColor: @lightTextColor; diff --git a/src/themes/default/views/item.variables b/src/themes/default/views/item.variables index 66e750e817..0a68da9954 100644 --- a/src/themes/default/views/item.variables +++ b/src/themes/default/views/item.variables @@ -129,7 +129,7 @@ @extraTop: 0; @extraLeft: 0; @extraWidth: 100%; -@extraPadding: 0 0 0; +@extraPadding: 0; @extraBoxShadow: none; @extraColor: @lightTextColor; @extraTransition: color @defaultDuration @defaultEasing; diff --git a/src/themes/material/elements/icon.overrides b/src/themes/material/elements/icon.overrides index 3a2f6955ba..c9170363f8 100644 --- a/src/themes/material/elements/icon.overrides +++ b/src/themes/material/elements/icon.overrides @@ -825,16 +825,16 @@ i.icon.explore::before { i.icon.exposure::before { content: "\e3ca"; } -i.icon.exposure.neg.1::before { +i.icon.exposure.neg.one::before { content: "\e3cb"; } -i.icon.exposure.neg.2::before { +i.icon.exposure.neg.two::before { content: "\e3cc"; } -i.icon.exposure.plus.1::before { +i.icon.exposure.plus.one::before { content: "\e3cd"; } -i.icon.exposure.plus.2::before { +i.icon.exposure.plus.two::before { content: "\e3ce"; } i.icon.exposure.zero::before { @@ -891,34 +891,34 @@ i.icon.file.upload::before { i.icon.filter::before { content: "\e3d3"; } -i.icon.filter.1::before { +i.icon.filter.one::before { content: "\e3d0"; } -i.icon.filter.2::before { +i.icon.filter.two::before { content: "\e3d1"; } -i.icon.filter.3::before { +i.icon.filter.three::before { content: "\e3d2"; } -i.icon.filter.4::before { +i.icon.filter.four::before { content: "\e3d4"; } -i.icon.filter.5::before { +i.icon.filter.five::before { content: "\e3d5"; } -i.icon.filter.6::before { +i.icon.filter.six::before { content: "\e3d6"; } -i.icon.filter.7::before { +i.icon.filter.seven::before { content: "\e3d7"; } -i.icon.filter.8::before { +i.icon.filter.eight::before { content: "\e3d8"; } -i.icon.filter.9::before { +i.icon.filter.nine::before { content: "\e3d9"; } -i.icon.filter.9.plus::before { +i.icon.filter.nine.plus::before { content: "\e3da"; } i.icon.filter.b.and.w::before { @@ -1524,16 +1524,16 @@ i.icon.lock.outline::before { i.icon.looks::before { content: "\e3fc"; } -i.icon.looks.3::before { +i.icon.looks.three::before { content: "\e3fb"; } -i.icon.looks.4::before { +i.icon.looks.four::before { content: "\e3fd"; } -i.icon.looks.5::before { +i.icon.looks.five::before { content: "\e3fe"; } -i.icon.looks.6::before { +i.icon.looks.six::before { content: "\e3ff"; } i.icon.looks.one::before { @@ -2274,7 +2274,7 @@ i.icon.shuffle::before { i.icon.signal.cellular.four.bar::before { content: "\e1c8"; } -i.icon.signal.cellular.connected.no.internet.4.bar::before { +i.icon.signal.cellular.connected.no.internet.four.bar::before { content: "\e1cd"; } i.icon.signal.cellular.no.sim::before { diff --git a/src/themes/resetcss/globals/reset.overrides b/src/themes/resetcss/globals/reset.overrides index 7899eb2b3a..2f628298d3 100644 --- a/src/themes/resetcss/globals/reset.overrides +++ b/src/themes/resetcss/globals/reset.overrides @@ -91,8 +91,8 @@ video { margin: 0; padding: 0; border: 0; - font-size: 100%; font: inherit; + font-size: 100%; vertical-align: baseline; }