fomantic-ui-sass 2.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.rspec +1 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +370 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +177 -0
- data/Rakefile +8 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +1518 -0
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +27 -0
- data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
- data/app/assets/javascripts/semantic-ui/api.js +1167 -0
- data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
- data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
- data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
- data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
- data/app/assets/javascripts/semantic-ui/embed.js +706 -0
- data/app/assets/javascripts/semantic-ui/form.js +1707 -0
- data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
- data/app/assets/javascripts/semantic-ui/nag.js +507 -0
- data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
- data/app/assets/javascripts/semantic-ui/progress.js +923 -0
- data/app/assets/javascripts/semantic-ui/range.js +278 -0
- data/app/assets/javascripts/semantic-ui/rating.js +511 -0
- data/app/assets/javascripts/semantic-ui/search.js +1515 -0
- data/app/assets/javascripts/semantic-ui/shape.js +921 -0
- data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
- data/app/assets/javascripts/semantic-ui/site.js +490 -0
- data/app/assets/javascripts/semantic-ui/state.js +708 -0
- data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
- data/app/assets/javascripts/semantic-ui/tab.js +952 -0
- data/app/assets/javascripts/semantic-ui/toast.js +592 -0
- data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
- data/app/assets/javascripts/semantic-ui/video.js +532 -0
- data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
- data/app/assets/javascripts/semantic-ui/visit.js +525 -0
- data/app/assets/stylesheets/semantic-ui.scss +5 -0
- data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
- data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
- data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
- data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
- data/app/helpers/semantic_flash_helper.rb +22 -0
- data/app/helpers/semantic_icon_helper.rb +8 -0
- data/app/views/semantic/_breadcrumbs.html.erb +12 -0
- data/fomantic-ui-sass.gemspec +31 -0
- data/lib/fomantic-ui-sass.rb +62 -0
- data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
- data/lib/fomantic/ui/sass/engine.rb +23 -0
- data/lib/fomantic/ui/sass/version.rb +8 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +28 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
- data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
- data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
- data/spec/spec_helper.rb +17 -0
- data/tasks/converter.rb +216 -0
- data/templates/project/manifest.rb +29 -0
- data/templates/project/styles.scss +1 -0
- metadata +390 -0
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* # Semantic UI 2.6.4 - Loader
|
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* Released under the MIT license
|
|
7
|
+
* http://opensource.org/licenses/MIT
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/*-------------------
|
|
12
|
+
Content
|
|
13
|
+
--------------------*/
|
|
14
|
+
|
|
15
|
+
.ui.placeholder {
|
|
16
|
+
position: static;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
-webkit-animation: placeholderShimmer 2s linear;
|
|
19
|
+
animation: placeholderShimmer 2s linear;
|
|
20
|
+
-webkit-animation-iteration-count: infinite;
|
|
21
|
+
animation-iteration-count: infinite;
|
|
22
|
+
background-color: #FFFFFF;
|
|
23
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.08)), color-stop(15%, rgba(0, 0, 0, 0.15)), color-stop(30%, rgba(0, 0, 0, 0.08)));
|
|
24
|
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%);
|
|
25
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%);
|
|
26
|
+
background-size: 1200px 100%;
|
|
27
|
+
max-width: 30rem;
|
|
28
|
+
}
|
|
29
|
+
@-webkit-keyframes placeholderShimmer {
|
|
30
|
+
0% {
|
|
31
|
+
background-position: -1200px 0;
|
|
32
|
+
}
|
|
33
|
+
100% {
|
|
34
|
+
background-position: 1200px 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
@keyframes placeholderShimmer {
|
|
38
|
+
0% {
|
|
39
|
+
background-position: -1200px 0;
|
|
40
|
+
}
|
|
41
|
+
100% {
|
|
42
|
+
background-position: 1200px 0;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
.ui.placeholder + .ui.placeholder {
|
|
46
|
+
margin-top: 2rem;
|
|
47
|
+
}
|
|
48
|
+
.ui.placeholder + .ui.placeholder {
|
|
49
|
+
-webkit-animation-delay: 0.15s;
|
|
50
|
+
animation-delay: 0.15s;
|
|
51
|
+
}
|
|
52
|
+
.ui.placeholder + .ui.placeholder + .ui.placeholder {
|
|
53
|
+
-webkit-animation-delay: 0.3s;
|
|
54
|
+
animation-delay: 0.3s;
|
|
55
|
+
}
|
|
56
|
+
.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder {
|
|
57
|
+
-webkit-animation-delay: 0.45s;
|
|
58
|
+
animation-delay: 0.45s;
|
|
59
|
+
}
|
|
60
|
+
.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder {
|
|
61
|
+
-webkit-animation-delay: 0.6s;
|
|
62
|
+
animation-delay: 0.6s;
|
|
63
|
+
}
|
|
64
|
+
.ui.placeholder,
|
|
65
|
+
.ui.placeholder > :before,
|
|
66
|
+
.ui.placeholder .image.header:after,
|
|
67
|
+
.ui.placeholder .line,
|
|
68
|
+
.ui.placeholder .line:after {
|
|
69
|
+
background-color: #FFFFFF;
|
|
70
|
+
}
|
|
71
|
+
.ui.placeholder.hidden {
|
|
72
|
+
display: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Image */
|
|
76
|
+
.ui.placeholder .image:not(.header):not(.ui) {
|
|
77
|
+
height: 100px;
|
|
78
|
+
}
|
|
79
|
+
.ui.placeholder .square.image:not(.header) {
|
|
80
|
+
height: 0px;
|
|
81
|
+
overflow: hidden;
|
|
82
|
+
|
|
83
|
+
/* 1/1 aspect ratio */
|
|
84
|
+
padding-top: 100%;
|
|
85
|
+
}
|
|
86
|
+
.ui.placeholder .rectangular.image:not(.header) {
|
|
87
|
+
height: 0px;
|
|
88
|
+
overflow: hidden;
|
|
89
|
+
|
|
90
|
+
/* 4/3 aspect ratio */
|
|
91
|
+
padding-top: 75%;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Lines */
|
|
95
|
+
.ui.placeholder .line {
|
|
96
|
+
position: relative;
|
|
97
|
+
height: 0.85714286em;
|
|
98
|
+
}
|
|
99
|
+
.ui.placeholder .line:before,
|
|
100
|
+
.ui.placeholder .line:after {
|
|
101
|
+
top: 100%;
|
|
102
|
+
position: absolute;
|
|
103
|
+
content: '';
|
|
104
|
+
background-color: inherit;
|
|
105
|
+
}
|
|
106
|
+
.ui.placeholder .line:before {
|
|
107
|
+
left: 0px;
|
|
108
|
+
}
|
|
109
|
+
.ui.placeholder .line:after {
|
|
110
|
+
right: 0px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/* Any Lines */
|
|
114
|
+
.ui.placeholder .line {
|
|
115
|
+
margin-bottom: 0.5em;
|
|
116
|
+
}
|
|
117
|
+
.ui.placeholder .line:before,
|
|
118
|
+
.ui.placeholder .line:after {
|
|
119
|
+
height: 0.5em;
|
|
120
|
+
}
|
|
121
|
+
.ui.placeholder .line:not(:first-child) {
|
|
122
|
+
margin-top: 0.5em;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* Header Image + 2 Lines */
|
|
126
|
+
.ui.placeholder .header {
|
|
127
|
+
position: relative;
|
|
128
|
+
overflow: hidden;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/* Line Outdent */
|
|
132
|
+
.ui.placeholder .line:nth-child(1):after {
|
|
133
|
+
width: 0%;
|
|
134
|
+
}
|
|
135
|
+
.ui.placeholder .line:nth-child(2):after {
|
|
136
|
+
width: 50%;
|
|
137
|
+
}
|
|
138
|
+
.ui.placeholder .line:nth-child(3):after {
|
|
139
|
+
width: 10%;
|
|
140
|
+
}
|
|
141
|
+
.ui.placeholder .line:nth-child(4):after {
|
|
142
|
+
width: 35%;
|
|
143
|
+
}
|
|
144
|
+
.ui.placeholder .line:nth-child(5):after {
|
|
145
|
+
width: 65%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/* Header Line 1 & 2*/
|
|
149
|
+
.ui.placeholder .header .line {
|
|
150
|
+
margin-bottom: 0.64285714em;
|
|
151
|
+
}
|
|
152
|
+
.ui.placeholder .header .line:before,
|
|
153
|
+
.ui.placeholder .header .line:after {
|
|
154
|
+
height: 0.64285714em;
|
|
155
|
+
}
|
|
156
|
+
.ui.placeholder .header .line:not(:first-child) {
|
|
157
|
+
margin-top: 0.64285714em;
|
|
158
|
+
}
|
|
159
|
+
.ui.placeholder .header .line:after {
|
|
160
|
+
width: 20%;
|
|
161
|
+
}
|
|
162
|
+
.ui.placeholder .header .line:nth-child(2):after {
|
|
163
|
+
width: 60%;
|
|
164
|
+
}
|
|
165
|
+
/* Image Header */
|
|
166
|
+
.ui.placeholder .image.header .line {
|
|
167
|
+
margin-left: 3em;
|
|
168
|
+
}
|
|
169
|
+
.ui.placeholder .image.header .line:before {
|
|
170
|
+
width: 0.71428571rem;
|
|
171
|
+
}
|
|
172
|
+
.ui.placeholder .image.header:after {
|
|
173
|
+
display: block;
|
|
174
|
+
height: 0.85714286em;
|
|
175
|
+
content: '';
|
|
176
|
+
margin-left: 3em;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/* Spacing */
|
|
180
|
+
.ui.placeholder .image .line:first-child,
|
|
181
|
+
.ui.placeholder .paragraph .line:first-child,
|
|
182
|
+
.ui.placeholder .header .line:first-child {
|
|
183
|
+
height: 0.01px;
|
|
184
|
+
}
|
|
185
|
+
.ui.placeholder .image:not(:first-child):before,
|
|
186
|
+
.ui.placeholder .paragraph:not(:first-child):before,
|
|
187
|
+
.ui.placeholder .header:not(:first-child):before {
|
|
188
|
+
height: 1.42857143em;
|
|
189
|
+
content: '';
|
|
190
|
+
display: block;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/* Inverted Content Loader */
|
|
194
|
+
.ui.inverted.placeholder {
|
|
195
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.08)), color-stop(15%, rgba(255, 255, 255, 0.14)), color-stop(30%, rgba(255, 255, 255, 0.08)));
|
|
196
|
+
background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.08) 30%);
|
|
197
|
+
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.08) 30%);
|
|
198
|
+
}
|
|
199
|
+
.ui.inverted.placeholder,
|
|
200
|
+
.ui.inverted.placeholder > :before,
|
|
201
|
+
.ui.inverted.placeholder .image.header:after,
|
|
202
|
+
.ui.inverted.placeholder .line,
|
|
203
|
+
.ui.inverted.placeholder .line:after {
|
|
204
|
+
background-color: #1B1C1D;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
/*******************************
|
|
209
|
+
Variations
|
|
210
|
+
*******************************/
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
/*-------------------
|
|
214
|
+
Sizes
|
|
215
|
+
--------------------*/
|
|
216
|
+
|
|
217
|
+
.ui.placeholder .full.line.line.line:after {
|
|
218
|
+
width: 0%;
|
|
219
|
+
}
|
|
220
|
+
.ui.placeholder .very.long.line.line.line:after {
|
|
221
|
+
width: 10%;
|
|
222
|
+
}
|
|
223
|
+
.ui.placeholder .long.line.line.line:after {
|
|
224
|
+
width: 35%;
|
|
225
|
+
}
|
|
226
|
+
.ui.placeholder .medium.line.line.line:after {
|
|
227
|
+
width: 50%;
|
|
228
|
+
}
|
|
229
|
+
.ui.placeholder .short.line.line.line:after {
|
|
230
|
+
width: 65%;
|
|
231
|
+
}
|
|
232
|
+
.ui.placeholder .very.short.line.line.line:after {
|
|
233
|
+
width: 80%;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/*-------------------
|
|
237
|
+
Fluid
|
|
238
|
+
--------------------*/
|
|
239
|
+
|
|
240
|
+
.ui.fluid.placeholder {
|
|
241
|
+
max-width: none;
|
|
242
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* # Semantic UI 2.6.4 - Rail
|
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* Released under the MIT license
|
|
7
|
+
* http://opensource.org/licenses/MIT
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
/*******************************
|
|
13
|
+
Rails
|
|
14
|
+
*******************************/
|
|
15
|
+
|
|
16
|
+
.ui.rail {
|
|
17
|
+
position: absolute;
|
|
18
|
+
top: 0%;
|
|
19
|
+
width: 300px;
|
|
20
|
+
height: 100%;
|
|
21
|
+
}
|
|
22
|
+
.ui.left.rail {
|
|
23
|
+
left: auto;
|
|
24
|
+
right: 100%;
|
|
25
|
+
padding: 0em 2rem 0em 0em;
|
|
26
|
+
margin: 0em 2rem 0em 0em;
|
|
27
|
+
}
|
|
28
|
+
.ui.right.rail {
|
|
29
|
+
left: 100%;
|
|
30
|
+
right: auto;
|
|
31
|
+
padding: 0em 0em 0em 2rem;
|
|
32
|
+
margin: 0em 0em 0em 2rem;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
/*******************************
|
|
37
|
+
Variations
|
|
38
|
+
*******************************/
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
/*--------------
|
|
42
|
+
Internal
|
|
43
|
+
---------------*/
|
|
44
|
+
|
|
45
|
+
.ui.left.internal.rail {
|
|
46
|
+
left: 0%;
|
|
47
|
+
right: auto;
|
|
48
|
+
padding: 0em 0em 0em 2rem;
|
|
49
|
+
margin: 0em 0em 0em 2rem;
|
|
50
|
+
}
|
|
51
|
+
.ui.right.internal.rail {
|
|
52
|
+
left: auto;
|
|
53
|
+
right: 0%;
|
|
54
|
+
padding: 0em 2rem 0em 0em;
|
|
55
|
+
margin: 0em 2rem 0em 0em;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/*--------------
|
|
59
|
+
Dividing
|
|
60
|
+
---------------*/
|
|
61
|
+
|
|
62
|
+
.ui.dividing.rail {
|
|
63
|
+
width: 302.5px;
|
|
64
|
+
}
|
|
65
|
+
.ui.left.dividing.rail {
|
|
66
|
+
padding: 0em 2.5rem 0em 0em;
|
|
67
|
+
margin: 0em 2.5rem 0em 0em;
|
|
68
|
+
border-right: 1px solid rgba(34, 36, 38, 0.15);
|
|
69
|
+
}
|
|
70
|
+
.ui.right.dividing.rail {
|
|
71
|
+
border-left: 1px solid rgba(34, 36, 38, 0.15);
|
|
72
|
+
padding: 0em 0em 0em 2.5rem;
|
|
73
|
+
margin: 0em 0em 0em 2.5rem;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/*--------------
|
|
77
|
+
Distance
|
|
78
|
+
---------------*/
|
|
79
|
+
|
|
80
|
+
.ui.close.rail {
|
|
81
|
+
width: calc(300px + 1em);
|
|
82
|
+
}
|
|
83
|
+
.ui.close.left.rail {
|
|
84
|
+
padding: 0em 1em 0em 0em;
|
|
85
|
+
margin: 0em 1em 0em 0em;
|
|
86
|
+
}
|
|
87
|
+
.ui.close.right.rail {
|
|
88
|
+
padding: 0em 0em 0em 1em;
|
|
89
|
+
margin: 0em 0em 0em 1em;
|
|
90
|
+
}
|
|
91
|
+
.ui.very.close.rail {
|
|
92
|
+
width: calc(300px + 0.5em);
|
|
93
|
+
}
|
|
94
|
+
.ui.very.close.left.rail {
|
|
95
|
+
padding: 0em 0.5em 0em 0em;
|
|
96
|
+
margin: 0em 0.5em 0em 0em;
|
|
97
|
+
}
|
|
98
|
+
.ui.very.close.right.rail {
|
|
99
|
+
padding: 0em 0em 0em 0.5em;
|
|
100
|
+
margin: 0em 0em 0em 0.5em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/*--------------
|
|
104
|
+
Attached
|
|
105
|
+
---------------*/
|
|
106
|
+
|
|
107
|
+
.ui.attached.left.rail,
|
|
108
|
+
.ui.attached.right.rail {
|
|
109
|
+
padding: 0em;
|
|
110
|
+
margin: 0em;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/*--------------
|
|
114
|
+
Sizing
|
|
115
|
+
---------------*/
|
|
116
|
+
|
|
117
|
+
.ui.mini.rail {
|
|
118
|
+
font-size: 0.78571429rem;
|
|
119
|
+
}
|
|
120
|
+
.ui.tiny.rail {
|
|
121
|
+
font-size: 0.85714286rem;
|
|
122
|
+
}
|
|
123
|
+
.ui.small.rail {
|
|
124
|
+
font-size: 0.92857143rem;
|
|
125
|
+
}
|
|
126
|
+
.ui.rail {
|
|
127
|
+
font-size: 1rem;
|
|
128
|
+
}
|
|
129
|
+
.ui.large.rail {
|
|
130
|
+
font-size: 1.14285714rem;
|
|
131
|
+
}
|
|
132
|
+
.ui.big.rail {
|
|
133
|
+
font-size: 1.28571429rem;
|
|
134
|
+
}
|
|
135
|
+
.ui.huge.rail {
|
|
136
|
+
font-size: 1.42857143rem;
|
|
137
|
+
}
|
|
138
|
+
.ui.massive.rail {
|
|
139
|
+
font-size: 1.71428571rem;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
/*******************************
|
|
144
|
+
Theme Overrides
|
|
145
|
+
*******************************/
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
/*******************************
|
|
150
|
+
Site Overrides
|
|
151
|
+
*******************************/
|
|
152
|
+
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* # Semantic UI 2.6.4 - Reveal
|
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* Released under the MIT license
|
|
7
|
+
* http://opensource.org/licenses/MIT
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
/*******************************
|
|
13
|
+
Reveal
|
|
14
|
+
*******************************/
|
|
15
|
+
|
|
16
|
+
.ui.reveal {
|
|
17
|
+
display: inherit;
|
|
18
|
+
position: relative !important;
|
|
19
|
+
font-size: 0em !important;
|
|
20
|
+
}
|
|
21
|
+
.ui.reveal > .visible.content {
|
|
22
|
+
position: absolute !important;
|
|
23
|
+
top: 0em !important;
|
|
24
|
+
left: 0em !important;
|
|
25
|
+
z-index: 3 !important;
|
|
26
|
+
-webkit-transition: all 0.5s ease 0.1s;
|
|
27
|
+
transition: all 0.5s ease 0.1s;
|
|
28
|
+
}
|
|
29
|
+
.ui.reveal > .hidden.content {
|
|
30
|
+
position: relative !important;
|
|
31
|
+
z-index: 2 !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/* Make sure hovered element is on top of other reveal */
|
|
35
|
+
.ui.active.reveal .visible.content,
|
|
36
|
+
.ui.reveal:hover .visible.content {
|
|
37
|
+
z-index: 4 !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
/*******************************
|
|
42
|
+
Types
|
|
43
|
+
*******************************/
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
/*--------------
|
|
47
|
+
Slide
|
|
48
|
+
---------------*/
|
|
49
|
+
|
|
50
|
+
.ui.slide.reveal {
|
|
51
|
+
position: relative !important;
|
|
52
|
+
overflow: hidden !important;
|
|
53
|
+
white-space: nowrap;
|
|
54
|
+
}
|
|
55
|
+
.ui.slide.reveal > .content {
|
|
56
|
+
display: block;
|
|
57
|
+
width: 100%;
|
|
58
|
+
white-space: normal;
|
|
59
|
+
float: left;
|
|
60
|
+
margin: 0em;
|
|
61
|
+
-webkit-transition: -webkit-transform 0.5s ease 0.1s;
|
|
62
|
+
transition: -webkit-transform 0.5s ease 0.1s;
|
|
63
|
+
transition: transform 0.5s ease 0.1s;
|
|
64
|
+
transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s;
|
|
65
|
+
}
|
|
66
|
+
.ui.slide.reveal > .visible.content {
|
|
67
|
+
position: relative !important;
|
|
68
|
+
}
|
|
69
|
+
.ui.slide.reveal > .hidden.content {
|
|
70
|
+
position: absolute !important;
|
|
71
|
+
left: 0% !important;
|
|
72
|
+
width: 100% !important;
|
|
73
|
+
-webkit-transform: translateX(100%) !important;
|
|
74
|
+
transform: translateX(100%) !important;
|
|
75
|
+
}
|
|
76
|
+
.ui.slide.active.reveal > .visible.content,
|
|
77
|
+
.ui.slide.reveal:hover > .visible.content {
|
|
78
|
+
-webkit-transform: translateX(-100%) !important;
|
|
79
|
+
transform: translateX(-100%) !important;
|
|
80
|
+
}
|
|
81
|
+
.ui.slide.active.reveal > .hidden.content,
|
|
82
|
+
.ui.slide.reveal:hover > .hidden.content {
|
|
83
|
+
-webkit-transform: translateX(0%) !important;
|
|
84
|
+
transform: translateX(0%) !important;
|
|
85
|
+
}
|
|
86
|
+
.ui.slide.right.reveal > .visible.content {
|
|
87
|
+
-webkit-transform: translateX(0%) !important;
|
|
88
|
+
transform: translateX(0%) !important;
|
|
89
|
+
}
|
|
90
|
+
.ui.slide.right.reveal > .hidden.content {
|
|
91
|
+
-webkit-transform: translateX(-100%) !important;
|
|
92
|
+
transform: translateX(-100%) !important;
|
|
93
|
+
}
|
|
94
|
+
.ui.slide.right.active.reveal > .visible.content,
|
|
95
|
+
.ui.slide.right.reveal:hover > .visible.content {
|
|
96
|
+
-webkit-transform: translateX(100%) !important;
|
|
97
|
+
transform: translateX(100%) !important;
|
|
98
|
+
}
|
|
99
|
+
.ui.slide.right.active.reveal > .hidden.content,
|
|
100
|
+
.ui.slide.right.reveal:hover > .hidden.content {
|
|
101
|
+
-webkit-transform: translateX(0%) !important;
|
|
102
|
+
transform: translateX(0%) !important;
|
|
103
|
+
}
|
|
104
|
+
.ui.slide.up.reveal > .hidden.content {
|
|
105
|
+
-webkit-transform: translateY(100%) !important;
|
|
106
|
+
transform: translateY(100%) !important;
|
|
107
|
+
}
|
|
108
|
+
.ui.slide.up.active.reveal > .visible.content,
|
|
109
|
+
.ui.slide.up.reveal:hover > .visible.content {
|
|
110
|
+
-webkit-transform: translateY(-100%) !important;
|
|
111
|
+
transform: translateY(-100%) !important;
|
|
112
|
+
}
|
|
113
|
+
.ui.slide.up.active.reveal > .hidden.content,
|
|
114
|
+
.ui.slide.up.reveal:hover > .hidden.content {
|
|
115
|
+
-webkit-transform: translateY(0%) !important;
|
|
116
|
+
transform: translateY(0%) !important;
|
|
117
|
+
}
|
|
118
|
+
.ui.slide.down.reveal > .hidden.content {
|
|
119
|
+
-webkit-transform: translateY(-100%) !important;
|
|
120
|
+
transform: translateY(-100%) !important;
|
|
121
|
+
}
|
|
122
|
+
.ui.slide.down.active.reveal > .visible.content,
|
|
123
|
+
.ui.slide.down.reveal:hover > .visible.content {
|
|
124
|
+
-webkit-transform: translateY(100%) !important;
|
|
125
|
+
transform: translateY(100%) !important;
|
|
126
|
+
}
|
|
127
|
+
.ui.slide.down.active.reveal > .hidden.content,
|
|
128
|
+
.ui.slide.down.reveal:hover > .hidden.content {
|
|
129
|
+
-webkit-transform: translateY(0%) !important;
|
|
130
|
+
transform: translateY(0%) !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/*--------------
|
|
134
|
+
Fade
|
|
135
|
+
---------------*/
|
|
136
|
+
|
|
137
|
+
.ui.fade.reveal > .visible.content {
|
|
138
|
+
opacity: 1;
|
|
139
|
+
}
|
|
140
|
+
.ui.fade.active.reveal > .visible.content,
|
|
141
|
+
.ui.fade.reveal:hover > .visible.content {
|
|
142
|
+
opacity: 0;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/*--------------
|
|
146
|
+
Move
|
|
147
|
+
---------------*/
|
|
148
|
+
|
|
149
|
+
.ui.move.reveal {
|
|
150
|
+
position: relative !important;
|
|
151
|
+
overflow: hidden !important;
|
|
152
|
+
white-space: nowrap;
|
|
153
|
+
}
|
|
154
|
+
.ui.move.reveal > .content {
|
|
155
|
+
display: block;
|
|
156
|
+
float: left;
|
|
157
|
+
white-space: normal;
|
|
158
|
+
margin: 0em;
|
|
159
|
+
-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
|
|
160
|
+
transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
|
|
161
|
+
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
|
|
162
|
+
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
|
|
163
|
+
}
|
|
164
|
+
.ui.move.reveal > .visible.content {
|
|
165
|
+
position: relative !important;
|
|
166
|
+
}
|
|
167
|
+
.ui.move.reveal > .hidden.content {
|
|
168
|
+
position: absolute !important;
|
|
169
|
+
left: 0% !important;
|
|
170
|
+
width: 100% !important;
|
|
171
|
+
}
|
|
172
|
+
.ui.move.active.reveal > .visible.content,
|
|
173
|
+
.ui.move.reveal:hover > .visible.content {
|
|
174
|
+
-webkit-transform: translateX(-100%) !important;
|
|
175
|
+
transform: translateX(-100%) !important;
|
|
176
|
+
}
|
|
177
|
+
.ui.move.right.active.reveal > .visible.content,
|
|
178
|
+
.ui.move.right.reveal:hover > .visible.content {
|
|
179
|
+
-webkit-transform: translateX(100%) !important;
|
|
180
|
+
transform: translateX(100%) !important;
|
|
181
|
+
}
|
|
182
|
+
.ui.move.up.active.reveal > .visible.content,
|
|
183
|
+
.ui.move.up.reveal:hover > .visible.content {
|
|
184
|
+
-webkit-transform: translateY(-100%) !important;
|
|
185
|
+
transform: translateY(-100%) !important;
|
|
186
|
+
}
|
|
187
|
+
.ui.move.down.active.reveal > .visible.content,
|
|
188
|
+
.ui.move.down.reveal:hover > .visible.content {
|
|
189
|
+
-webkit-transform: translateY(100%) !important;
|
|
190
|
+
transform: translateY(100%) !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/*--------------
|
|
194
|
+
Rotate
|
|
195
|
+
---------------*/
|
|
196
|
+
|
|
197
|
+
.ui.rotate.reveal > .visible.content {
|
|
198
|
+
-webkit-transition-duration: 0.5s;
|
|
199
|
+
transition-duration: 0.5s;
|
|
200
|
+
-webkit-transform: rotate(0deg);
|
|
201
|
+
transform: rotate(0deg);
|
|
202
|
+
}
|
|
203
|
+
.ui.rotate.reveal > .visible.content,
|
|
204
|
+
.ui.rotate.right.reveal > .visible.content {
|
|
205
|
+
-webkit-transform-origin: bottom right;
|
|
206
|
+
transform-origin: bottom right;
|
|
207
|
+
}
|
|
208
|
+
.ui.rotate.active.reveal > .visible.content,
|
|
209
|
+
.ui.rotate.reveal:hover > .visible.content,
|
|
210
|
+
.ui.rotate.right.active.reveal > .visible.content,
|
|
211
|
+
.ui.rotate.right.reveal:hover > .visible.content {
|
|
212
|
+
-webkit-transform: rotate(110deg);
|
|
213
|
+
transform: rotate(110deg);
|
|
214
|
+
}
|
|
215
|
+
.ui.rotate.left.reveal > .visible.content {
|
|
216
|
+
-webkit-transform-origin: bottom left;
|
|
217
|
+
transform-origin: bottom left;
|
|
218
|
+
}
|
|
219
|
+
.ui.rotate.left.active.reveal > .visible.content,
|
|
220
|
+
.ui.rotate.left.reveal:hover > .visible.content {
|
|
221
|
+
-webkit-transform: rotate(-110deg);
|
|
222
|
+
transform: rotate(-110deg);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
/*******************************
|
|
227
|
+
States
|
|
228
|
+
*******************************/
|
|
229
|
+
|
|
230
|
+
.ui.disabled.reveal:hover > .visible.visible.content {
|
|
231
|
+
position: static !important;
|
|
232
|
+
display: block !important;
|
|
233
|
+
opacity: 1 !important;
|
|
234
|
+
top: 0 !important;
|
|
235
|
+
left: 0 !important;
|
|
236
|
+
right: auto !important;
|
|
237
|
+
bottom: auto !important;
|
|
238
|
+
-webkit-transform: none !important;
|
|
239
|
+
transform: none !important;
|
|
240
|
+
}
|
|
241
|
+
.ui.disabled.reveal:hover > .hidden.hidden.content {
|
|
242
|
+
display: none !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
/*******************************
|
|
247
|
+
Coupling
|
|
248
|
+
*******************************/
|
|
249
|
+
|
|
250
|
+
.ui.reveal > .ui.ribbon.label {
|
|
251
|
+
z-index: 5;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
/*******************************
|
|
256
|
+
Variations
|
|
257
|
+
*******************************/
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
/*--------------
|
|
261
|
+
Visible
|
|
262
|
+
---------------*/
|
|
263
|
+
|
|
264
|
+
.ui.visible.reveal {
|
|
265
|
+
overflow: visible;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/*--------------
|
|
269
|
+
Instant
|
|
270
|
+
---------------*/
|
|
271
|
+
|
|
272
|
+
.ui.instant.reveal > .content {
|
|
273
|
+
-webkit-transition-delay: 0s !important;
|
|
274
|
+
transition-delay: 0s !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/*--------------
|
|
278
|
+
Sizing
|
|
279
|
+
---------------*/
|
|
280
|
+
|
|
281
|
+
.ui.reveal > .content {
|
|
282
|
+
font-size: 1rem !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
/*******************************
|
|
287
|
+
Theme Overrides
|
|
288
|
+
*******************************/
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
/*******************************
|
|
293
|
+
Site Overrides
|
|
294
|
+
*******************************/
|
|
295
|
+
|