Skip to content

Commit

Permalink
#1334 Make light theme more usable
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick committed Nov 14, 2015
1 parent 15669af commit 24503f0
Showing 1 changed file with 50 additions and 5 deletions.
55 changes: 50 additions & 5 deletions themes/Sunrise/accents/10.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,65 @@
* Based on Font Awesome 4.4.0
* #eeeeee #dddddd #cccccc
*/

*,
.panel-title,
.navbar,
.navbar-brand,
.navbar-brand:hover,
.list-group-item {
color: #555 !important;
}

.dropdown-menu .fa,
.label .fa,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
color: #fff !important;
}

.navbar-default .navbar-form ::-webkit-input-placeholder,
.first-run-login ::-webkit-input-placeholder {
color: rgba(33,33,33,.6);
}

.navbar-default .navbar-form ::-moz-placeholder,
.first-run-login ::-moz-placeholder {
color: rgba(33,33,33,.6);
}

.navbar-default .navbar-form :-ms-input-placeholder,
.first-run-login :-ms-input-placeholder {
color: rgba(33,33,33,.6);
}

#header,
.editor {
background: #eeeeee;
background: linear-gradient(to bottom left, #eeeeee, #cccccc);
background: linear-gradient(to bottom left,
#eeeeee,
#cccccc);
}

.first-run.panel,
.profile-card-head,
.nav-tabs,
.nav-tab-info {
background: #eeeeee;
background: linear-gradient(to top right, #eeeeee, #cccccc);
background: linear-gradient(to top right,
#eeeeee,
#cccccc);
}

.panel-default .panel-heading {
background: #eeeeee;
background: linear-gradient(to right, #eeeeee, #cccccc);
background: linear-gradient(to right,
#eeeeee,
#cccccc);
}

.comment-arrow {
Expand All @@ -48,10 +89,14 @@

.modal-form .modal-header {
background: #eeeeee;
background: linear-gradient(to bottom left, #eeeeee, #dddddd);
background: linear-gradient(to bottom left,
#eeeeee,
#dddddd);
}

.modal-form .modal-footer {
background: #dddddd;
background: linear-gradient(to bottom left, #dddddd, #cccccc);
background: linear-gradient(to bottom left,
#dddddd,
#cccccc);
}

0 comments on commit 24503f0

Please sign in to comment.