-
Notifications
You must be signed in to change notification settings - Fork 2
/
bootstrap-tab-modal.css
78 lines (64 loc) · 1.57 KB
/
bootstrap-tab-modal.css
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body > .tab-modal .modal-body {
padding: 10px 0px 0px;
background-color: #F9F9F9;
border-radius: 5px;
}
body > .tab-modal .tab-modal-header {
text-align: center;
font-size: 45px;
line-height: 45px;
font-weight: lighter;
color: #425968;
}
body > .tab-modal .tab-modal-header > button.close {
margin-right: 10px;
}
body > .tab-modal .modal-body > ul.nav-tabs {
padding: 0 10px;
}
body > .tab-modal .modal-body > ul.nav-tabs > li > a {
padding: 5px;
border-color: #C5C4C4;
border-bottom-color: transparent;
cursor: pointer;
color: rgba(0, 0, 0, 0.59);
}
body > .tab-modal .modal-body > ul.nav-tabs > li:not(.active) > a:hover {
border-bottom-color: #ddd;
}
body > .tab-modal .modal-body > ul.nav-tabs > li.active > a {
color: #000;
}
body > .tab-modal .modal-body .alert {
margin: 10px;
display: none;
}
body > .tab-modal .modal-body .alert .error-details {
color: #C18F8F;
font-size: 11px;
text-decoration: underline;
}
body > .tab-modal .modal-body .alert .popover {
max-width: 900px;
}
body > .tab-modal .modal-body .alert .popover .popover-content {
padding: 0;
}
body > .tab-modal .modal-body .alert .popover pre {
font-size: 10px;
background-color: white;
border: none;
}
body > .tab-modal .modal-body > .tab-content {
padding: 10px;
background-color: #FFF;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
body > .tab-modal .modal-body > .tab-content .tab-pane.throbbing {
text-align: center;
padding: 50px 10px;
}
body > .tab-modal .modal-body > .tab-content .tab-pane.throbbing canvas {
margin: auto;
}