mirror of
https://github.com/iSharkFly-Docs/opensearch-docs-cn
synced 2025-03-09 14:38:01 +00:00
* Adds remote loading of header component from project site Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Integrates the redesigned header; removes the old copy-banner and search field Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Updates footer design and menu items Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Consolidates SCSS mixins and color palette Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Reduce classname verbosity slightly Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Removes redundant mobile menu button handler Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Corects spacing issue Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Corrects nav menu margins Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Corrects header logo clipping Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Updates navigation menu items Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Corrects top level navigation hover states Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Adds smoother responsive margins between top navigation header menu items Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> * Remove deleted SCSS file Signed-off-by: Aaron Stephanus <taoist.futility@pm.me> --------- Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>
21 lines
672 B
SCSS
21 lines
672 B
SCSS
// Rotated & Flipped Icons
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
|
|
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
|
|
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
|
|
|
|
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
|
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
|
|
|
// Hook for IE8-9
|
|
// -------------------------
|
|
|
|
:root .#{$fa-css-prefix}-rotate-90,
|
|
:root .#{$fa-css-prefix}-rotate-180,
|
|
:root .#{$fa-css-prefix}-rotate-270,
|
|
:root .#{$fa-css-prefix}-flip-horizontal,
|
|
:root .#{$fa-css-prefix}-flip-vertical {
|
|
filter: none;
|
|
}
|