blueshift 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +74 -0
- data/Rakefile +1 -0
- data/app/assets/fonts/gotham/gotham-bold.eot +0 -0
- data/app/assets/fonts/gotham/gotham-bold.svg +628 -0
- data/app/assets/fonts/gotham/gotham-bold.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
- data/app/assets/fonts/gotham/gotham-book.eot +0 -0
- data/app/assets/fonts/gotham/gotham-book.svg +631 -0
- data/app/assets/fonts/gotham/gotham-book.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-book.woff +0 -0
- data/app/assets/fonts/gotham/gotham-light.eot +0 -0
- data/app/assets/fonts/gotham/gotham-light.svg +635 -0
- data/app/assets/fonts/gotham/gotham-light.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-light.woff +0 -0
- data/app/assets/fonts/gotham/gotham-medium.eot +0 -0
- data/app/assets/fonts/gotham/gotham-medium.svg +629 -0
- data/app/assets/fonts/gotham/gotham-medium.ttf +0 -0
- data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
- data/app/assets/fonts/ionicons/ionicons.eot +0 -0
- data/app/assets/fonts/ionicons/ionicons.svg +2254 -0
- data/app/assets/fonts/ionicons/ionicons.ttf +0 -0
- data/app/assets/fonts/ionicons/ionicons.woff +0 -0
- data/blueshift.gemspec +23 -0
- data/lib/blueshift.rb +6 -0
- data/lib/blueshift/version.rb +3 -0
- data/vendor/assets/javascripts/alert.js +99 -0
- data/vendor/assets/javascripts/collapse.js +167 -0
- data/vendor/assets/javascripts/date_picker.js +474 -0
- data/vendor/assets/javascripts/dropdown.js +169 -0
- data/vendor/assets/javascripts/file_input.js +100 -0
- data/vendor/assets/javascripts/map.js +2044 -0
- data/vendor/assets/javascripts/modal (1).js +247 -0
- data/vendor/assets/javascripts/modal.js +247 -0
- data/vendor/assets/javascripts/popover.js +114 -0
- data/vendor/assets/javascripts/tab.js +144 -0
- data/vendor/assets/javascripts/time_picker.js +888 -0
- data/vendor/assets/javascripts/tooltip.js +361 -0
- data/vendor/assets/javascripts/transitions.js +60 -0
- data/vendor/assets/stylesheets/ad.css.scss +72 -0
- data/vendor/assets/stylesheets/alert.css.scss +40 -0
- data/vendor/assets/stylesheets/breadcrumb.css.scss +22 -0
- data/vendor/assets/stylesheets/button.css.scss +202 -0
- data/vendor/assets/stylesheets/code.css.scss +49 -0
- data/vendor/assets/stylesheets/collapse.css.scss +14 -0
- data/vendor/assets/stylesheets/datepicker.css.scss +102 -0
- data/vendor/assets/stylesheets/dropdown.css.scss +84 -0
- data/vendor/assets/stylesheets/footer.css.scss +33 -0
- data/vendor/assets/stylesheets/form.css.scss +207 -0
- data/vendor/assets/stylesheets/grid.css.scss +291 -0
- data/vendor/assets/stylesheets/header.css.scss +134 -0
- data/vendor/assets/stylesheets/icon.css.scss +966 -0
- data/vendor/assets/stylesheets/image.css.scss +39 -0
- data/vendor/assets/stylesheets/label_and_badge.css.scss +53 -0
- data/vendor/assets/stylesheets/link.css.scss +19 -0
- data/vendor/assets/stylesheets/list.css.scss +38 -0
- data/vendor/assets/stylesheets/map.css.scss +13 -0
- data/vendor/assets/stylesheets/modal.css.scss +117 -0
- data/vendor/assets/stylesheets/pagination.css.scss +37 -0
- data/vendor/assets/stylesheets/placeholder.css.scss +11 -0
- data/vendor/assets/stylesheets/popover.css.scss +107 -0
- data/vendor/assets/stylesheets/progress.css.scss +25 -0
- data/vendor/assets/stylesheets/reset.css.scss +57 -0
- data/vendor/assets/stylesheets/tab.css.scss +165 -0
- data/vendor/assets/stylesheets/table.css.scss +70 -0
- data/vendor/assets/stylesheets/timepicker.css.scss +69 -0
- data/vendor/assets/stylesheets/tooltip.css.scss +81 -0
- data/vendor/assets/stylesheets/transitions.css.scss +12 -0
- data/vendor/assets/stylesheets/trunk.css.scss +72 -0
- data/vendor/assets/stylesheets/typography.css.scss +140 -0
- metadata +145 -0
@@ -0,0 +1,57 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Reset
|
4
|
+
#Media Queries */
|
5
|
+
|
6
|
+
/* #Reset
|
7
|
+
================================================== */
|
8
|
+
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
|
9
|
+
form, fieldset, p, blockquote, th, td {
|
10
|
+
margin: 0;
|
11
|
+
padding: 0;
|
12
|
+
}
|
13
|
+
table {
|
14
|
+
border-collapse: collapse;
|
15
|
+
border-spacing: 0;
|
16
|
+
}
|
17
|
+
fieldset, img { border: 0 }
|
18
|
+
address, caption, cite, code, dfn, th, var {
|
19
|
+
font-style: normal;
|
20
|
+
font-weight: normal;
|
21
|
+
}
|
22
|
+
caption, th { text-align: left; }
|
23
|
+
h1, h2, h3, h4, h5, h6 {
|
24
|
+
font-size: 100%;
|
25
|
+
font-weight: normal;
|
26
|
+
}
|
27
|
+
q:before, q:after { content: '';}
|
28
|
+
abbr, acronym {
|
29
|
+
border-bottom: 1px dotted rgba(0,0,0,1);
|
30
|
+
font-variant: normal;
|
31
|
+
}
|
32
|
+
sup { vertical-align: text-top; }
|
33
|
+
sub { vertical-align: text-bottom; }
|
34
|
+
input, textarea, select {
|
35
|
+
font-family: inherit;
|
36
|
+
font-size: inherit;
|
37
|
+
font-weight: inherit;
|
38
|
+
}
|
39
|
+
input, textarea, select { *font-size: 100%; }
|
40
|
+
legend { color: rgba(0,0,0,1); }
|
41
|
+
html,
|
42
|
+
body {
|
43
|
+
color: rgba(43,50,53,1);
|
44
|
+
font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
|
45
|
+
-webkit-font-smoothing: antialiased;
|
46
|
+
font-smooth: always;
|
47
|
+
-webkit-overflow-scrolling: touch;
|
48
|
+
overflow-scrolling: touch;
|
49
|
+
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
50
|
+
tap-highlight-color: rgba(0,0,0,0);
|
51
|
+
text-rendering: optimizeLegibility;
|
52
|
+
-webkit-text-size-adjust: 100%;
|
53
|
+
-moz-text-size-adjust: 100%;
|
54
|
+
-ms-text-size-adjust: 100%;
|
55
|
+
-o-text-size-adjust: 100%;
|
56
|
+
text-size-adjust: 100%;
|
57
|
+
}
|
@@ -0,0 +1,165 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Tab */
|
4
|
+
|
5
|
+
/* #Tab
|
6
|
+
================================================== */
|
7
|
+
.nav {
|
8
|
+
list-style: none;
|
9
|
+
margin: 0 0 20px 0;
|
10
|
+
padding: 0;
|
11
|
+
}
|
12
|
+
.nav > .pull-none { float: none; }
|
13
|
+
.nav > .pull-left { float: left; }
|
14
|
+
.nav > .pull-right { float: right; }
|
15
|
+
.nav > li > a {
|
16
|
+
color: rgba(158,171,179,1);
|
17
|
+
display: block;
|
18
|
+
font-size: 14px;
|
19
|
+
font-weight: bold;
|
20
|
+
line-height: 14px;
|
21
|
+
}
|
22
|
+
.nav > li > a:hover,
|
23
|
+
.nav > li > a:focus {
|
24
|
+
color: rgba(71,74,84,1);
|
25
|
+
text-decoration: none;
|
26
|
+
}
|
27
|
+
.nav-header {
|
28
|
+
background-color: rgba(58,144,216,1);
|
29
|
+
border-top-left-radius: 3px;
|
30
|
+
border-top-right-radius: 3px;
|
31
|
+
color: rgba(255,255,255,1);
|
32
|
+
display: block;
|
33
|
+
font-size: 14px;
|
34
|
+
font-weight: bold;
|
35
|
+
line-height: 20px;
|
36
|
+
padding: 10px 15px;
|
37
|
+
}
|
38
|
+
.nav li + .nav-header { margin-top: 10px; }
|
39
|
+
.nav-list {
|
40
|
+
margin-bottom: 0;
|
41
|
+
padding-right: 15px;
|
42
|
+
padding-left: 15px;
|
43
|
+
}
|
44
|
+
.nav-list > li > a,
|
45
|
+
.nav-list .nav-header {
|
46
|
+
margin-right: -15px;
|
47
|
+
margin-left: -15px;
|
48
|
+
}
|
49
|
+
.nav-list > li > a {
|
50
|
+
color: rgba(158,171,179,1);
|
51
|
+
padding: 11px 15px 8px 15px;
|
52
|
+
font-weight: bold;
|
53
|
+
}
|
54
|
+
.nav-list > li > a:hover { background-color: rgba(236,238,241,1); }
|
55
|
+
.nav-list > .active > a,
|
56
|
+
.nav-list > .active > a:hover,
|
57
|
+
.nav-list > .active > a:focus {
|
58
|
+
background-color: rgba(246,247,249,1);
|
59
|
+
color: rgba(71,74,84,1);
|
60
|
+
}
|
61
|
+
.nav-list .divider {
|
62
|
+
background-color: rgba(236,238,241,1);
|
63
|
+
height: 1px;
|
64
|
+
margin: 10px 0 8px 0;
|
65
|
+
overflow: hidden;
|
66
|
+
}
|
67
|
+
.nav-tabs:before,
|
68
|
+
.nav-pills:before,
|
69
|
+
.nav-tabs:after,
|
70
|
+
.nav-pills:after {
|
71
|
+
content: "";
|
72
|
+
display: table;
|
73
|
+
line-height: 0;
|
74
|
+
}
|
75
|
+
.nav-tabs:after,
|
76
|
+
.nav-pills:after { clear: both; }
|
77
|
+
.nav-tabs > li,
|
78
|
+
.nav-pills > li { float: left; }
|
79
|
+
.nav-tabs > li > a { margin-right: 20px; }
|
80
|
+
.nav-tabs > .active > a,
|
81
|
+
.nav-tabs > .active > a:hover,
|
82
|
+
.nav-tabs > .active > a:focus { color: rgba(58,144,216,1); }
|
83
|
+
.nav-pills > li > a {
|
84
|
+
background-color: rgba(246,247,249,1);
|
85
|
+
border-radius: 2px;
|
86
|
+
color: rgba(158,171,179,1);
|
87
|
+
margin-right: 3px;
|
88
|
+
padding: 9px 10px 8px 10px;
|
89
|
+
}
|
90
|
+
.nav-pills > li > a:hover { background-color: rgba(236,238,241,1); }
|
91
|
+
.nav-pills > .active > a,
|
92
|
+
.nav-pills > .active > a:hover,
|
93
|
+
.nav-pills > .active > a:focus {
|
94
|
+
background-color: rgba(58,144,216,1);
|
95
|
+
color: rgba(255,255,255,1);
|
96
|
+
}
|
97
|
+
.nav-stacked > li { float: none; }
|
98
|
+
.nav-stacked > li > a { margin-right: 0; }
|
99
|
+
.nav-tabs.nav-stacked { border-bottom: 0; }
|
100
|
+
.nav-tabs.nav-stacked > li > a {
|
101
|
+
background-color: rgba(246,247,249,1);
|
102
|
+
color: rgba(158,171,179,1);
|
103
|
+
padding: 9px 10px 8px 10px;
|
104
|
+
}
|
105
|
+
.nav-tabs.nav-stacked > li:first-child > a {
|
106
|
+
border-top-right-radius: 3px;
|
107
|
+
border-top-left-radius: 3px;
|
108
|
+
}
|
109
|
+
.nav-tabs.nav-stacked > li:last-child > a {
|
110
|
+
border-bottom-right-radius: 3px;
|
111
|
+
border-bottom-left-radius: 3px;
|
112
|
+
}
|
113
|
+
.nav-tabs.nav-stacked > li > a:hover,
|
114
|
+
.nav-tabs.nav-stacked > li > a:focus {
|
115
|
+
background-color: rgba(236,238,241,1);
|
116
|
+
color: rgba(71,74,84,1);
|
117
|
+
z-index: 2;
|
118
|
+
}
|
119
|
+
.nav-tabs.nav-stacked > .active > a,
|
120
|
+
.nav-tabs.nav-stacked > .active > a:hover,
|
121
|
+
.nav-tabs.nav-stacked > .active > a:focus {
|
122
|
+
background-color: rgba(58,144,216,1);
|
123
|
+
color: rgba(255,255,255,1);
|
124
|
+
}
|
125
|
+
.nav-pills.nav-stacked > li > a { margin-bottom: 3px; }
|
126
|
+
.nav-pills.nav-stacked > li:last-child > a { margin-bottom: 0; }
|
127
|
+
.nav-tabs .open .dropdown-toggle,
|
128
|
+
.nav-pills .open .dropdown-toggle,
|
129
|
+
.nav > li.dropdown.open.active > a:hover,
|
130
|
+
.nav > li.dropdown.open.active > a:focus {
|
131
|
+
background-color: rgba(236,238,241,1);
|
132
|
+
color: rgba(71,74,84,1);
|
133
|
+
}
|
134
|
+
.tabbable { *zoom: 1; }
|
135
|
+
.tabbable:before,
|
136
|
+
.tabbable:after {
|
137
|
+
content: "";
|
138
|
+
display: table;
|
139
|
+
line-height: 0;
|
140
|
+
}
|
141
|
+
.tabbable:after { clear: both; }
|
142
|
+
.tab-content { overflow: auto; }
|
143
|
+
.tab-content > .tab-pane,
|
144
|
+
.pill-content > .pill-pane { display: none; }
|
145
|
+
.tab-content > .active,
|
146
|
+
.pill-content > .active { display: block; }
|
147
|
+
.tabs-below > .nav-tabs > li > a { border-radius: 0 0 3px 3px; }
|
148
|
+
.tabs-left > .nav-tabs > li,
|
149
|
+
.tabs-right > .nav-tabs > li { float: none; }
|
150
|
+
.tabs-left > .nav-tabs > li > a,
|
151
|
+
.tabs-right > .nav-tabs > li > a {
|
152
|
+
margin-right: 0;
|
153
|
+
margin-bottom: 3px;
|
154
|
+
min-width: 50px;
|
155
|
+
}
|
156
|
+
.tabs-left > .nav-tabs {
|
157
|
+
float: left;
|
158
|
+
margin-right: 19px;
|
159
|
+
}
|
160
|
+
.tabs-left > .nav-tabs > li > a { border-radius: 3px 0 0 3px; }
|
161
|
+
.tabs-right > .nav-tabs {
|
162
|
+
float: right;
|
163
|
+
margin-left: 19px;
|
164
|
+
}
|
165
|
+
.tabs-right > .nav-tabs > li > a { border-radius: 0 3px 3px 0; }
|
@@ -0,0 +1,70 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Table */
|
4
|
+
|
5
|
+
/* #Table
|
6
|
+
================================================== */
|
7
|
+
table {
|
8
|
+
background-color: transparent;
|
9
|
+
border-collapse: collapse;
|
10
|
+
border-spacing: 0;
|
11
|
+
max-width: 100%;
|
12
|
+
}
|
13
|
+
.table { width: 100%; }
|
14
|
+
.table th,
|
15
|
+
.table td {
|
16
|
+
border-top: 1px solid rgba(217,222,225,1);
|
17
|
+
font-size: 16px;
|
18
|
+
line-height: 25px;
|
19
|
+
padding: 9px 10px 6px 10px;
|
20
|
+
text-align: left;
|
21
|
+
vertical-align: top;
|
22
|
+
}
|
23
|
+
.table th {
|
24
|
+
background-color: rgba(236,238,241,1);
|
25
|
+
color: rgba(71,74,84,1);
|
26
|
+
font-size: 14px;
|
27
|
+
font-weight: bold;
|
28
|
+
}
|
29
|
+
.table th a { color: rgba(71,74,84,1); }
|
30
|
+
.table th a:hover { text-decoration: underline; }
|
31
|
+
.table thead th { vertical-align: bottom; }
|
32
|
+
.table caption + thead tr:first-child th,
|
33
|
+
.table caption + thead tr:first-child td,
|
34
|
+
.table colgroup + thead tr:first-child th,
|
35
|
+
.table colgroup + thead tr:first-child td,
|
36
|
+
.table thead:first-child tr:first-child th,
|
37
|
+
.table thead:first-child tr:first-child td { border-top: 0; }
|
38
|
+
.table tbody + tbody { border-top: 2px solid rgba(217,222,225,1); }
|
39
|
+
.table .table { background-color: rgba(255,255,255,1); }
|
40
|
+
.table-condensed th,
|
41
|
+
.table-condensed td {
|
42
|
+
font-size: 14px;
|
43
|
+
padding: 5px 5px 3px 5px;
|
44
|
+
}
|
45
|
+
.table-condensed th { font-size: 12px; }
|
46
|
+
.table-bordered {
|
47
|
+
border: 1px solid rgba(217,222,225,1);
|
48
|
+
border-collapse: separate;
|
49
|
+
border-left: 0;
|
50
|
+
}
|
51
|
+
.table-bordered th,
|
52
|
+
.table-bordered td { border-left: 1px solid rgba(217,222,225,1); }
|
53
|
+
.table-bordered caption + thead tr:first-child th,
|
54
|
+
.table-bordered caption + tbody tr:first-child th,
|
55
|
+
.table-bordered caption + tbody tr:first-child td,
|
56
|
+
.table-bordered colgroup + thead tr:first-child th,
|
57
|
+
.table-bordered colgroup + tbody tr:first-child th,
|
58
|
+
.table-bordered colgroup + tbody tr:first-child td,
|
59
|
+
.table-bordered thead:first-child tr:first-child th,
|
60
|
+
.table-bordered tbody:first-child tr:first-child th,
|
61
|
+
.table-bordered tbody:first-child tr:first-child td { border-top: 0; }
|
62
|
+
.table-striped tbody > tr:nth-child(odd) > td,
|
63
|
+
.table-striped tbody > tr:nth-child(odd) > th { background-color: rgba(246,247,249,1); }
|
64
|
+
.table-hover tbody tr:hover > td,
|
65
|
+
.table-hover tbody tr:hover > th { background-color: rgba(240,241,244,1); }
|
66
|
+
.table-unbordered,
|
67
|
+
.table-unbordered thead,
|
68
|
+
.table-unbordered tbody,
|
69
|
+
.table-unbordered th,
|
70
|
+
.table-unbordered td { border: 0; }
|
@@ -0,0 +1,69 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Timepicker
|
4
|
+
#Media Queries */
|
5
|
+
|
6
|
+
/* #Timepicker
|
7
|
+
================================================== */
|
8
|
+
.timepicker { position: relative; }
|
9
|
+
.timepicker .add-on i { display: inline-block; }
|
10
|
+
.timepicker-widget.dropdown-menu { padding: 5px 1px 5px 0; }
|
11
|
+
.timepicker-widget.dropdown-menu.open { display: inline-block; }
|
12
|
+
.timepicker-widget.dropdown-menu:before {
|
13
|
+
border-bottom: 7px solid rgba(246,247,249,1);
|
14
|
+
border-right: 7px solid transparent;
|
15
|
+
border-left: 7px solid transparent;
|
16
|
+
content: "";
|
17
|
+
display: inline-block;
|
18
|
+
left: 9px;
|
19
|
+
position: absolute;
|
20
|
+
top: -7px;
|
21
|
+
}
|
22
|
+
.timepicker-widget.dropdown-menu:after {
|
23
|
+
border-bottom: 6px solid rgba(246,247,249,1);
|
24
|
+
border-right: 6px solid transparent;
|
25
|
+
border-left: 6px solid transparent;
|
26
|
+
content: "";
|
27
|
+
display: inline-block;
|
28
|
+
left: 10px;
|
29
|
+
position: absolute;
|
30
|
+
top: -6px;
|
31
|
+
}
|
32
|
+
.timepicker-widget a.btn,
|
33
|
+
.timepicker-widget input { border-radius: 3px; }
|
34
|
+
.timepicker-widget table {
|
35
|
+
margin: 0;
|
36
|
+
width: 100%;
|
37
|
+
}
|
38
|
+
.timepicker-widget table td {
|
39
|
+
text-align: center;
|
40
|
+
height: 30px;
|
41
|
+
margin: 0;
|
42
|
+
}
|
43
|
+
.timepicker-widget table td:not(.separator) { min-width: 30px; }
|
44
|
+
.timepicker-widget table td span { width: 100%; }
|
45
|
+
.timepicker-widget table td a {
|
46
|
+
color: rgba(43,50,53,1);
|
47
|
+
display: inline-block;
|
48
|
+
margin: 0;
|
49
|
+
padding: 8px 0px;
|
50
|
+
outline: 0;
|
51
|
+
width: 100%;
|
52
|
+
}
|
53
|
+
.timepicker-widget table td a:hover {
|
54
|
+
color: rgba(58,144,216,1);
|
55
|
+
text-decoration: none;
|
56
|
+
}
|
57
|
+
.timepicker-widget table td input {
|
58
|
+
margin: 0;
|
59
|
+
text-align: center;
|
60
|
+
width: 25px;
|
61
|
+
}
|
62
|
+
.timepicker-widget .modal-content { padding: 4px; }
|
63
|
+
|
64
|
+
/* #Media Queries
|
65
|
+
================================================== */
|
66
|
+
@media only screen and (max-width: 767px) {
|
67
|
+
.timepicker { width: 100%; }
|
68
|
+
.timepicker .dropdown-menu { width: 100%; }
|
69
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Tooltip */
|
4
|
+
|
5
|
+
/* #Tooltip
|
6
|
+
================================================== */
|
7
|
+
.tooltip {
|
8
|
+
display: block;
|
9
|
+
font-size: 11px;
|
10
|
+
font-weight: bold;
|
11
|
+
line-height: 17px;
|
12
|
+
opacity: 0;
|
13
|
+
filter: alpha(opacity=0);
|
14
|
+
position: absolute;
|
15
|
+
visibility: visible;
|
16
|
+
z-index: 1030;
|
17
|
+
}
|
18
|
+
.tooltip.in {
|
19
|
+
opacity: 0.8;
|
20
|
+
filter: alpha(opacity=80);
|
21
|
+
}
|
22
|
+
.tooltip.top {
|
23
|
+
margin-top: -3px;
|
24
|
+
padding: 5px 0;
|
25
|
+
}
|
26
|
+
.tooltip.right {
|
27
|
+
margin-left: 3px;
|
28
|
+
padding: 0 5px;
|
29
|
+
}
|
30
|
+
.tooltip.bottom {
|
31
|
+
margin-top: 3px;
|
32
|
+
padding: 5px 0;
|
33
|
+
}
|
34
|
+
.tooltip.left {
|
35
|
+
margin-left: -3px;
|
36
|
+
padding: 0 5px;
|
37
|
+
}
|
38
|
+
.tooltip-inner {
|
39
|
+
background-color: rgba(71,74,84,1);
|
40
|
+
border-radius: 3px;
|
41
|
+
color: rgba(255,255,255,1);
|
42
|
+
max-width: 200px;
|
43
|
+
padding: 6px 10px 4px 10px;
|
44
|
+
text-align: center;
|
45
|
+
text-decoration: none;
|
46
|
+
}
|
47
|
+
.tooltip-arrow {
|
48
|
+
border-color: transparent;
|
49
|
+
border-style: solid;
|
50
|
+
height: 0;
|
51
|
+
position: absolute;
|
52
|
+
width: 0;
|
53
|
+
}
|
54
|
+
.tooltip.top .tooltip-arrow {
|
55
|
+
border-top-color: rgba(71,74,84,1);
|
56
|
+
border-width: 5px 5px 0;
|
57
|
+
bottom: 0;
|
58
|
+
left: 50%;
|
59
|
+
margin-left: -5px;
|
60
|
+
}
|
61
|
+
.tooltip.right .tooltip-arrow {
|
62
|
+
border-right-color: rgba(71,74,84,1);
|
63
|
+
border-width: 5px 5px 5px 0;
|
64
|
+
left: 0;
|
65
|
+
margin-top: -5px;
|
66
|
+
top: 50%;
|
67
|
+
}
|
68
|
+
.tooltip.left .tooltip-arrow {
|
69
|
+
border-left-color: rgba(71,74,84,1);
|
70
|
+
border-width: 5px 0 5px 5px;
|
71
|
+
margin-top: -5px;
|
72
|
+
right: 0;
|
73
|
+
top: 50%;
|
74
|
+
}
|
75
|
+
.tooltip.bottom .tooltip-arrow {
|
76
|
+
border-bottom-color: rgba(71,74,84,1);
|
77
|
+
border-width: 0 5px 5px;
|
78
|
+
left: 50%;
|
79
|
+
margin-left: -5px;
|
80
|
+
top: 0;
|
81
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
#Transition */
|
4
|
+
|
5
|
+
/* #Transition
|
6
|
+
================================================== */
|
7
|
+
.fade {
|
8
|
+
opacity: 0;
|
9
|
+
-webkit-transition: opacity 0.15s linear;
|
10
|
+
transition: opacity 0.15s linear;
|
11
|
+
}
|
12
|
+
.fade.in { opacity: 1; }
|