forked from Semantic-Org/Semantic-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtab.less
More file actions
executable file
·63 lines (54 loc) · 1.06 KB
/
tab.less
File metadata and controls
executable file
·63 lines (54 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* # Semantic - Tab
* http://github.com/jlukic/semantic-ui/
*
*
* Copyright 2014 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
UI Tabs
*******************************/
.ui.tab {
display: none;
}
/*******************************
States
*******************************/
/*--------------------
Active
---------------------*/
.ui.tab.active,
.ui.tab.open {
display: block;
}
/*--------------------
Loading
---------------------*/
.ui.tab.loading {
position: relative;
overflow: hidden;
display: block;
min-height: 250px;
text-indent: -10000px;
}
.ui.tab.loading * {
position: relative !important;
left: -10000px !important;
}
.ui.tab.loading:after {
position: absolute;
top: 50px;
left: 50%;
content: 'Loading...';
margin-left: -32px;
text-indent: 5px;
color: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
padding-top: 75px;
background: url(../images/loader-large.gif) no-repeat 0px 0px;
visibility: visible;
}