You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
749 B
39 lines
749 B
/*******************************
|
|
UI Tabs
|
|
*******************************/
|
|
.ui.tab {
|
|
display: none;
|
|
}
|
|
.ui.tab.active,
|
|
.ui.tab.open {
|
|
display: block;
|
|
}
|
|
.ui.tab.simple {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
/*--------------------
|
|
Loading State
|
|
---------------------*/
|
|
/* On Form */
|
|
.ui.tab.loading {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: block;
|
|
min-height: 250px;
|
|
text-indent: -9999px;
|
|
}
|
|
.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;
|
|
}
|