diff options
author | Phil Hughes <me@iamphill.com> | 2016-04-11 10:49:48 +0100 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-04-20 15:42:09 -0400 |
commit | 720da4196c80ea4d0e0a1a865d70fe04094e4472 (patch) | |
tree | dae40f59d16ed5fe1300f227572b30486815039f /app | |
parent | f56c62631525e45568231ad2be26f0e40f345c2b (diff) | |
download | gitlab-ce-720da4196c80ea4d0e0a1a865d70fe04094e4472.tar.gz |
Updated based on designs
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/dropdowns.scss | 53 |
1 files changed, 44 insertions, 9 deletions
diff --git a/app/assets/stylesheets/framework/dropdowns.scss b/app/assets/stylesheets/framework/dropdowns.scss index 55c90b09e97..9ec0db324c9 100644 --- a/app/assets/stylesheets/framework/dropdowns.scss +++ b/app/assets/stylesheets/framework/dropdowns.scss @@ -248,7 +248,7 @@ .dropdown-title { position: relative; - padding: 0 25px 15px; + padding: 0 25px 10px; margin: 0 10px 10px; font-weight: 600; line-height: 1; @@ -278,7 +278,7 @@ right: 5px; width: 20px; height: 20px; - top: -1px; + top: -3px; } .dropdown-menu-back { @@ -420,8 +420,26 @@ } .ui-datepicker-header { - padding: 8px; + padding: 0 8px 10px; border: 0; + + .ui-icon { + background: none; + font-size: 20px; + text-indent: 0; + + &:before { + display: block; + position: relative; + top: -2px; + color: #707070; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + } } .ui-state-active, @@ -432,25 +450,41 @@ .ui-datepicker-prev, .ui-datepicker-next { + top: 0; + height: 15px; + cursor: pointer; + &:hover { background-color: transparent; border: 0; + + .ui-icon:before { + color: $md-link-color; + } } } .ui-datepicker-prev { - left: 1px; - top: 1px; + left: 0; + + .ui-icon:before { + content: '\f104'; + text-align: left; + } } .ui-datepicker-next { - right: 1px; - top: 1px; + right: 0; + + .ui-icon:before { + content: '\f105'; + text-align: right; + } } td { padding: 0; - border: 1px solid rgba(0, 0, 0, .1); + border: 1px solid rgba(#000, .1); &:first-child { border-left: 0; @@ -476,10 +510,11 @@ } th { - padding: 5px 0; + padding: 2px 0; color: #b8b8b8; font-weight: normal; text-transform: lowercase; + border-top: 1px solid rgba(#000, .1); } .ui-datepicker-unselectable { |