blob: a271d33c869cb70429ac10a8f31cacacd5c82eed [file] [log] [blame]
Michael Daviscb8bb192017-02-09 15:45:13 -06001.inline {
2 display: inline-block;
Michael Daviscb8bb192017-02-09 15:45:13 -06003}
4
5.disabled {
Michael Davis20389ab2017-07-31 18:49:32 -05006 &:hover {
7 cursor: default;
8 text-decoration: none;
9 }
Michael Daviscb8bb192017-02-09 15:45:13 -060010}
11
12.float-right {
13 float: right;
14}
15.clear-float {
Derick Montague1ffa2092019-04-01 17:57:27 -050016 &::after {
17 content: " ";
18 display: block;
19 clear: both;
20 }
Michael Daviscb8bb192017-02-09 15:45:13 -060021}
22.error {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050023 color: $status-error;
Michael Daviscb8bb192017-02-09 15:45:13 -060024}
25
26.hide {
27 display: none;
28}
29
30.show {
31 display: block;
32}
33
34.close {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050035 color: $primary-accent;
Michael Daviscb8bb192017-02-09 15:45:13 -060036 font-size: 1.5em;
37 padding: 1em;
38 box-sizing: border-box;
39 line-height: 0;
40 display: flex;
41 justify-content: center;
42 flex-direction: column;
43 background: transparent;
Iftekharul Islam4390b022017-06-05 09:44:50 -050044 border: 0px;
Michael Daviscb8bb192017-02-09 15:45:13 -060045 margin: 0;
46 &:hover {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050047 color: $text-03;
Michael Daviscb8bb192017-02-09 15:45:13 -060048 background: transparent;
49 }
50}
51
Michael Davis0f03ad12017-02-27 16:54:18 -060052.fixed {
53 position:fixed;
54 top:130px;
55 z-index:200;
56}
57
Michael Davisaeedf9e2017-04-06 14:35:56 -050058.bold {
59 font-weight: 700;
60}
61
Michael Daviscb8bb192017-02-09 15:45:13 -060062.no-margin {
Michael Davis51946552017-05-01 10:30:38 -050063 margin: 0 !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060064}
65
Michael Davis19475752017-02-23 18:30:23 -060066.no-padding {
Michael Davis51946552017-05-01 10:30:38 -050067 padding:0 !important;
Michael Davis19475752017-02-23 18:30:23 -060068}
69
Michael Daviscb8bb192017-02-09 15:45:13 -060070.no-bottom-margin {
Michael Davis51946552017-05-01 10:30:38 -050071 margin-bottom: 0 !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060072}
73
74.no-top-margin {
Michael Davis51946552017-05-01 10:30:38 -050075 margin-top: 0 !important;
Michael Davis19475752017-02-23 18:30:23 -060076}
77
78.transitionAll {
79 transition: all .5s ease;
Michael Davis9486f542017-05-30 15:35:31 -050080}
81
82//Uploading
83.uploading {
84 @include indeterminate-bar;
85 font-weight: 700;
86 padding: .2em 6em .2em 1em;
87 margin: .8em 0;
88 width: 100%;
89}
90
91.accessible-text {
Derick Montague1ffa2092019-04-01 17:57:27 -050092 clip: rect(1px, 1px, 1px, 1px);
93 clip-path: inset(50%);
94 height: 1px;
95 width: 1px;
96 margin: -1px;
Michael Davis9486f542017-05-30 15:35:31 -050097 overflow: hidden;
Derick Montague1ffa2092019-04-01 17:57:27 -050098 padding: 0;
99 position: absolute;
Michael Davis6dc5f182017-06-26 13:07:27 -0500100}
101
102.show-scroll {
103 // Force scrollbar to always be visible in webkit browsers
104 &::-webkit-scrollbar {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500105 background-color: $background-03;
Michael Davis6dc5f182017-06-26 13:07:27 -0500106 width: 8px;
107 }
108
109 &::-webkit-scrollbar-thumb {
110 border-radius: 5px;
111 background-color: rgba(0,0,0,.5);
112 -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
113 }
Michael Davisa5f222a2017-08-04 15:02:38 -0500114}
115
116.flash {
117 animation-name: flash;
118 animation-timing-function: ease-out;
119 animation-duration: 1s;
120 -webkit-animation-name: flash;
121 -webkit-animation-timing-function: ease-out;
122 -webkit-animation-duration: 1s;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500123 color: $primary-light;
Michael Davisa5f222a2017-08-04 15:02:38 -0500124}
125@-webkit-keyframes flash {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500126 from { background: $primary-accent; }
Michael Davisa5f222a2017-08-04 15:02:38 -0500127 to { background: none; }
128}
129
130@keyframes flash {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500131 0% { background: $primary-accent; }
Michael Davisa5f222a2017-08-04 15:02:38 -0500132 100% { background: none; }
Yoshie Muranakafa562732019-07-17 11:23:15 -0500133}
134
135.nowrap {
136 white-space: nowrap!important;
Michael Daviscb8bb192017-02-09 15:45:13 -0600137}