diff --git a/src/definitions/elements/reveal.less b/src/definitions/elements/reveal.less index a7d91eab3..f7f6552bc 100755 --- a/src/definitions/elements/reveal.less +++ b/src/definitions/elements/reveal.less @@ -26,7 +26,6 @@ .ui.reveal { display: inline-block; position: relative !important; - z-index: @bottomZIndex !important; font-size: 0em !important; } @@ -35,13 +34,18 @@ top: 0em !important; left: 0em !important; z-index: @topZIndex !important; - transition: all @transitionDuration @transitionEasing @transitionDelay; + transition: @transition; } .ui.reveal > .hidden.content { position: relative !important; z-index: @bottomZIndex !important; } +/* Make sure hovered element is on top of other reveal */ +.ui.reveal:hover .visible.content { + z-index: @activeZIndex !important; +} + /******************************* Types @@ -54,9 +58,7 @@ .ui.slide.reveal { position: relative !important; - display: block; overflow: hidden !important; - white-space: nowrap; } @@ -72,6 +74,7 @@ bottom @transitionDuration @transitionEasing @transitionDelay ; } + .ui.slide.reveal > .visible.content { position: relative !important; } diff --git a/src/definitions/modules/progress.js b/src/definitions/modules/progress.js index 4d77e4d60..54fdb0c56 100644 --- a/src/definitions/modules/progress.js +++ b/src/definitions/modules/progress.js @@ -624,7 +624,6 @@ $.fn.progress.settings = { value : 'value' }, - selector : { bar : '> .bar', label : '> .label', diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables index 78b87416f..5a6b1192e 100644 --- a/src/themes/default/elements/icon.variables +++ b/src/themes/default/elements/icon.variables @@ -8,7 +8,7 @@ @fontName: 'icons'; -@opacity: 0.75; +@opacity: 1; @width: 1.23em; @height: 0.9em; @distanceFromText: 0.25rem; diff --git a/src/themes/default/elements/reveal.variables b/src/themes/default/elements/reveal.variables index 5930e1467..3d60664bb 100644 --- a/src/themes/default/elements/reveal.variables +++ b/src/themes/default/elements/reveal.variables @@ -5,11 +5,11 @@ @transitionDelay: 0.15s; @transitionDuration: 0.8s; @transitionEasing: cubic-bezier(0.175, 0.885, 0.320, 1); +@transition: all @transitionDuration @transitionEasing @transitionDelay; -@zIndex: 2; -@bottomZIndex: 3; -@topZIndex: 4; +@bottomZIndex: 2; +@topZIndex: 3; +@activeZIndex: 4; @rotateDegrees: 110deg; -@medium: 1rem; \ No newline at end of file