-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from camalot/fix/spinning-gear
Fix/spinning gear
- Loading branch information
Showing
8 changed files
with
96 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@import url( './_variables.less'); | ||
::-webkit-scrollbar { | ||
max-width: 10px !important; | ||
max-height: 10px !important; | ||
background: lighten(@background-light,8.8%) !important; | ||
} | ||
::-webkit-scrollbar-corner, | ||
::-webkit-scrollbar-track { | ||
background: lighten(@background-light,8.8%) !important; | ||
} | ||
::-webkit-scrollbar-thumb { | ||
border-radius: 5px !important; | ||
background: rgba(80,80,80,.6) !important; | ||
} | ||
::-webkit-scrollbar-corner, | ||
::-webkit-scrollbar-track { | ||
background: lighten(@background-light,8.8%) !important; | ||
} | ||
::selection { | ||
background-color: lighten(@blue,20%) !important; | ||
color: @white !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@import url( './_variables.less'); | ||
#filter-box, | ||
#search-box { | ||
border: solid 1px @background-black; | ||
border-radius: 0; | ||
box-shadow: none; | ||
background: #3a3a3a @search-image-16 3px center no-repeat !important; | ||
padding: 4px 3px 4px 25px !important; | ||
color: @text-light; | ||
} | ||
#filter-box:hover, | ||
#search-box:hover { | ||
border-color: @blue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@import url( './_variables.less'); | ||
/* bigtable */ | ||
.bigtable tr { | ||
border: 1px solid @background-dark; | ||
} | ||
.bigtable th, | ||
.bigtable tr.header { | ||
background-color: @background-black; | ||
border-color: @background-dark; | ||
color: @text-light; | ||
} | ||
table.sortable span.sortarrow { | ||
color: @text-light; | ||
} | ||
.bigtable tr.header th { | ||
background-color: @background-black; | ||
color: @text-light; | ||
} | ||
table.sortable a.sortheader { | ||
color: @text-light; | ||
} | ||
table.bigtable.pane > tbody > tr > td:last-child {} | ||
.pane-frame .bigtable tr, | ||
.pane-frame table {} | ||
table.stripped tr:nth-child(even) { | ||
background: @background-black; | ||
color: @text-light; | ||
} | ||
.bigtable .plugin-category td.pane { | ||
font-size: 3em; | ||
text-align: center; | ||
text-transform: uppercase; | ||
background-color: #4183C4; | ||
color: @text-light; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@import url( './_variables.less'); | ||
/* this is the trend timeline */ | ||
.timeline-container { | ||
-webkit-filter: invert(80%); | ||
} | ||
/* this is inside the timeline, so we invert it back to normal */ | ||
.timeline-container .timeline-event-icon > img { | ||
-webkit-filter: invert(80%); | ||
} |