~johnsca/charms/trusty/cloudfoundry/reconciler-ui

« back to all changes in this revision

Viewing changes to reconciler/ui/static/semantic/less/modules/tab.less

  • Committer: Whit Morriss
  • Date: 2014-10-13 06:50:17 UTC
  • Revision ID: whit.morriss@canonical.com-20141013065017-0feo2ku3yllymkol
reorg reconciler

Show diffs side-by-side

added added

removed removed

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