This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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 #793 from HospitalRun/css-cleanup
CSS refactoring
- Loading branch information
Showing
11 changed files
with
118 additions
and
132 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
// Loading icon from http://www.bootply.com/128062 | ||
.glyphicon-refresh-animate { | ||
-webkit-animation: spin2 .7s infinite linear; | ||
-animation: spin .7s infinite linear; | ||
} | ||
|
||
@-webkit-keyframes spin2 { | ||
from { -webkit-transform: rotate(0deg); } | ||
to { -webkit-transform: rotate(360deg); } | ||
} | ||
|
||
@keyframes spin { | ||
from { transform: scale(1) rotate(0deg); } | ||
to { transform: scale(1) rotate(360deg); } | ||
} |
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
File renamed without changes.
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,12 @@ | ||
.table-header { | ||
background-color: $navy_light; | ||
color: $table-header-color; | ||
|
||
.sortable-column { | ||
cursor: pointer; | ||
|
||
.inactive { | ||
color: $inactive-sort-indicator; | ||
} | ||
} | ||
} |
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,44 @@ | ||
.twitter-typeahead { | ||
width: 100%; | ||
|
||
.tt-query, | ||
.tt-hint { margin-bottom: 0; } | ||
} | ||
|
||
.tt-menu { | ||
border: 1px solid rgba(0,0,0,.1); | ||
border-radius: 0 0 3px 3px; | ||
box-shadow: 0 3px 5px rgba(0,0,0,.1); | ||
background-clip: padding-box; | ||
background-color: $white; | ||
padding: 5px 0; | ||
width: 100%; | ||
min-width: 160px; | ||
max-height: 110px; | ||
overflow-y: scroll; | ||
overflow-x: none; | ||
|
||
.query-results { margin-bottom: 0; } | ||
} | ||
|
||
.tt-suggestion { | ||
display: block; | ||
padding: 3px 12px; | ||
|
||
&.tt-is-under-cursor { | ||
background-color: #0081c2; | ||
background-image: linear-gradient(to bottom,#08c,#0077b3); | ||
background-repeat: repeat-x; | ||
color: $white; | ||
|
||
a { color: $white; } | ||
} | ||
|
||
p { margin: 0; } | ||
} | ||
|
||
//Scrollable typeahead | ||
.scrollable-typeahead .tt-menu { | ||
max-height: 200px; | ||
overflow-y: auto; | ||
} |
File renamed without changes.