Browse Source

Fix tiny little bug with overlay in sidebar

pull/1243/head
jlukic 10 years ago
parent
commit
0e8129f949
5 changed files with 9 additions and 7 deletions
  1. 5
      dist/components/sidebar.css
  2. 2
      dist/components/sidebar.min.css
  3. 5
      dist/semantic.css
  4. 2
      dist/semantic.min.css
  5. 2
      src/definitions/modules/sidebar.less

5
dist/components/sidebar.css

@ -286,8 +286,9 @@
} }
.ui.visible.overlay.sidebar ~ .fixed, .ui.visible.overlay.sidebar ~ .fixed,
.ui.visible.overlay.sidebar ~ .pusher { .ui.visible.overlay.sidebar ~ .pusher {
-webkit-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
} }
/*-------------- /*--------------

2
dist/components/sidebar.min.css
File diff suppressed because it is too large
View File

5
dist/semantic.css

@ -23205,8 +23205,9 @@ th {
.ui.visible.overlay.sidebar ~ .fixed, .ui.visible.overlay.sidebar ~ .fixed,
.ui.visible.overlay.sidebar ~ .pusher { .ui.visible.overlay.sidebar ~ .pusher {
-webkit-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
} }
/*-------------- /*--------------

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

2
src/definitions/modules/sidebar.less

@ -276,7 +276,7 @@
.ui.visible.overlay.sidebar ~ .fixed, .ui.visible.overlay.sidebar ~ .fixed,
.ui.visible.overlay.sidebar ~ .pusher { .ui.visible.overlay.sidebar ~ .pusher {
transform: translate3d(0, 0, 0) !important;
transform: none !important;
} }

Loading…
Cancel
Save