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