Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 1 | .inline { |
2 | display: inline-block; | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 3 | } |
4 | |||||
5 | .disabled { | ||||
Iftekharul Islam | c016139 | 2017-06-14 15:46:15 -0500 | [diff] [blame] | 6 | color: $lightbg__grey; |
Michael Davis | 20389ab | 2017-07-31 18:49:32 -0500 | [diff] [blame] | 7 | @include fastTransition-all; |
8 | &:hover { | ||||
9 | cursor: default; | ||||
10 | text-decoration: none; | ||||
11 | } | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 12 | } |
13 | |||||
14 | .float-right { | ||||
15 | float: right; | ||||
16 | } | ||||
17 | .clear-float { | ||||
18 | clear: both; | ||||
19 | } | ||||
20 | .error { | ||||
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 21 | color: $error-color; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 22 | } |
23 | |||||
24 | .hide { | ||||
25 | display: none; | ||||
26 | } | ||||
27 | |||||
28 | .show { | ||||
29 | display: block; | ||||
30 | } | ||||
31 | |||||
32 | .close { | ||||
33 | color: $lightbg__primary; | ||||
34 | font-size: 1.5em; | ||||
35 | padding: 1em; | ||||
36 | box-sizing: border-box; | ||||
37 | line-height: 0; | ||||
38 | display: flex; | ||||
39 | justify-content: center; | ||||
40 | flex-direction: column; | ||||
41 | background: transparent; | ||||
Iftekharul Islam | 4390b02 | 2017-06-05 09:44:50 -0500 | [diff] [blame] | 42 | border: 0px; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 43 | margin: 0; |
44 | &:hover { | ||||
45 | color: $lightbg__accent; | ||||
46 | background: transparent; | ||||
47 | } | ||||
48 | } | ||||
49 | |||||
Michael Davis | 0f03ad1 | 2017-02-27 16:54:18 -0600 | [diff] [blame] | 50 | .fixed { |
51 | position:fixed; | ||||
52 | top:130px; | ||||
53 | z-index:200; | ||||
54 | } | ||||
55 | |||||
Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 56 | .bold { |
57 | font-weight: 700; | ||||
58 | } | ||||
59 | |||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 60 | .no-margin { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 61 | margin: 0 !important; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 62 | } |
63 | |||||
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 64 | .no-padding { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 65 | padding:0 !important; |
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 66 | } |
67 | |||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 68 | .no-bottom-margin { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 69 | margin-bottom: 0 !important; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 70 | } |
71 | |||||
72 | .no-top-margin { | ||||
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 73 | margin-top: 0 !important; |
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 74 | } |
75 | |||||
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 76 | .btm-border-grey { |
77 | border-bottom: 1px solid $lightbg__grey; | ||||
78 | } | ||||
79 | |||||
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 80 | .transitionAll { |
81 | transition: all .5s ease; | ||||
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 82 | } |
83 | |||||
84 | //Uploading | ||||
85 | .uploading { | ||||
86 | @include indeterminate-bar; | ||||
87 | font-weight: 700; | ||||
88 | padding: .2em 6em .2em 1em; | ||||
89 | margin: .8em 0; | ||||
90 | width: 100%; | ||||
91 | } | ||||
92 | |||||
93 | .accessible-text { | ||||
94 | height: 0; | ||||
95 | width: 0; | ||||
96 | position: absolute; | ||||
97 | overflow: hidden; | ||||
Michael Davis | 6dc5f18 | 2017-06-26 13:07:27 -0500 | [diff] [blame] | 98 | } |
99 | |||||
100 | .show-scroll { | ||||
101 | // Force scrollbar to always be visible in webkit browsers | ||||
102 | &::-webkit-scrollbar { | ||||
103 | background-color: lighten($medgrey, 5%); | ||||
104 | width: 8px; | ||||
105 | } | ||||
106 | |||||
107 | &::-webkit-scrollbar-thumb { | ||||
108 | border-radius: 5px; | ||||
109 | background-color: rgba(0,0,0,.5); | ||||
110 | -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5); | ||||
111 | } | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 112 | } |