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.
|
|
/* * # Semantic - Tab * http://github.com/semantic-org/semantic-ui/ * * * Copyright 2014 Contributor * Released under the MIT license * http://opensource.org/licenses/MIT * */
/******************************* Theme *******************************/
@type : 'module'; @element : 'tab';
@import '../../semantic.config';
/******************************* 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: @loadingMinHeight; } .ui.tab.loading * { position: @loadingContentPosition !important; left: @loadingContentOffset !important; } .ui.tab.loading:after { border: none; position: absolute; top: @loadingTextDistance; left: 0%; content: @loadingText; color: @lightTextColor; width: 100%; height: 100%; padding-top: @loadingTextDistance; text-align: @loadingAlign; background: @loadingBackground; visibility: visible; }
.loadUIOverrides();
|