fomantic-ui-sass 2.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +5 -0
  5. data/CHANGELOG.md +370 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +177 -0
  9. data/Rakefile +8 -0
  10. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  13. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  14. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.svg +1518 -0
  18. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  19. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  20. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
  23. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  24. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  25. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  26. data/app/assets/images/semantic-ui/flags.png +0 -0
  27. data/app/assets/javascripts/semantic-ui.js +27 -0
  28. data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
  29. data/app/assets/javascripts/semantic-ui/api.js +1167 -0
  30. data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
  32. data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
  33. data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
  34. data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
  35. data/app/assets/javascripts/semantic-ui/embed.js +706 -0
  36. data/app/assets/javascripts/semantic-ui/form.js +1707 -0
  37. data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
  38. data/app/assets/javascripts/semantic-ui/nag.js +507 -0
  39. data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
  40. data/app/assets/javascripts/semantic-ui/progress.js +923 -0
  41. data/app/assets/javascripts/semantic-ui/range.js +278 -0
  42. data/app/assets/javascripts/semantic-ui/rating.js +511 -0
  43. data/app/assets/javascripts/semantic-ui/search.js +1515 -0
  44. data/app/assets/javascripts/semantic-ui/shape.js +921 -0
  45. data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
  46. data/app/assets/javascripts/semantic-ui/site.js +490 -0
  47. data/app/assets/javascripts/semantic-ui/state.js +708 -0
  48. data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
  49. data/app/assets/javascripts/semantic-ui/tab.js +952 -0
  50. data/app/assets/javascripts/semantic-ui/toast.js +592 -0
  51. data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
  52. data/app/assets/javascripts/semantic-ui/video.js +532 -0
  53. data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
  54. data/app/assets/javascripts/semantic-ui/visit.js +525 -0
  55. data/app/assets/stylesheets/semantic-ui.scss +5 -0
  56. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  57. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  58. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
  59. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
  60. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
  61. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
  62. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
  65. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
  66. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
  67. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
  68. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
  69. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
  70. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
  71. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
  72. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
  73. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
  74. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
  75. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
  76. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  77. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
  78. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
  79. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
  80. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  81. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
  82. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
  83. data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
  84. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
  85. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
  86. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
  87. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
  88. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
  90. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
  91. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
  92. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
  93. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
  94. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
  95. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
  96. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
  97. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
  98. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
  99. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
  100. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  101. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
  102. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
  103. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
  104. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  105. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
  106. data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  107. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
  108. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
  109. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
  110. data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
  111. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  112. data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
  113. data/app/helpers/semantic_flash_helper.rb +22 -0
  114. data/app/helpers/semantic_icon_helper.rb +8 -0
  115. data/app/views/semantic/_breadcrumbs.html.erb +12 -0
  116. data/fomantic-ui-sass.gemspec +31 -0
  117. data/lib/fomantic-ui-sass.rb +62 -0
  118. data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
  119. data/lib/fomantic/ui/sass/engine.rb +23 -0
  120. data/lib/fomantic/ui/sass/version.rb +8 -0
  121. data/spec/dummy/README.rdoc +28 -0
  122. data/spec/dummy/Rakefile +6 -0
  123. data/spec/dummy/app/assets/images/.keep +0 -0
  124. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  125. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  126. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  127. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  128. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  129. data/spec/dummy/app/mailers/.keep +0 -0
  130. data/spec/dummy/app/models/.keep +0 -0
  131. data/spec/dummy/app/models/concerns/.keep +0 -0
  132. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  133. data/spec/dummy/bin/bundle +3 -0
  134. data/spec/dummy/bin/rails +4 -0
  135. data/spec/dummy/bin/rake +4 -0
  136. data/spec/dummy/config.ru +4 -0
  137. data/spec/dummy/config/application.rb +28 -0
  138. data/spec/dummy/config/boot.rb +5 -0
  139. data/spec/dummy/config/environment.rb +5 -0
  140. data/spec/dummy/config/environments/development.rb +29 -0
  141. data/spec/dummy/config/environments/production.rb +80 -0
  142. data/spec/dummy/config/environments/test.rb +36 -0
  143. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  144. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  145. data/spec/dummy/config/initializers/inflections.rb +16 -0
  146. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  147. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  148. data/spec/dummy/config/initializers/session_store.rb +3 -0
  149. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  150. data/spec/dummy/config/locales/en.yml +23 -0
  151. data/spec/dummy/config/routes.rb +2 -0
  152. data/spec/dummy/lib/assets/.keep +0 -0
  153. data/spec/dummy/log/.keep +0 -0
  154. data/spec/dummy/public/404.html +58 -0
  155. data/spec/dummy/public/422.html +58 -0
  156. data/spec/dummy/public/500.html +57 -0
  157. data/spec/dummy/public/favicon.ico +0 -0
  158. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
  159. data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
  160. data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
  161. data/spec/spec_helper.rb +17 -0
  162. data/tasks/converter.rb +216 -0
  163. data/templates/project/manifest.rb +29 -0
  164. data/templates/project/styles.scss +1 -0
  165. metadata +390 -0
@@ -0,0 +1,165 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Video
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
+ Types
14
+ *******************************/
15
+
16
+ .ui.embed {
17
+ position: relative;
18
+ max-width: 100%;
19
+ height: 0px;
20
+ overflow: hidden;
21
+ background: #DCDDDE;
22
+ padding-bottom: 56.25%;
23
+ }
24
+
25
+ /*-----------------
26
+ Embedded Content
27
+ ------------------*/
28
+
29
+ .ui.embed iframe,
30
+ .ui.embed embed,
31
+ .ui.embed object {
32
+ position: absolute;
33
+ border: none;
34
+ width: 100%;
35
+ height: 100%;
36
+ top: 0px;
37
+ left: 0px;
38
+ margin: 0em;
39
+ padding: 0em;
40
+ }
41
+
42
+ /*-----------------
43
+ Embed
44
+ ------------------*/
45
+
46
+ .ui.embed > .embed {
47
+ display: none;
48
+ }
49
+
50
+ /*--------------
51
+ Placeholder
52
+ ---------------*/
53
+
54
+ .ui.embed > .placeholder {
55
+ position: absolute;
56
+ cursor: pointer;
57
+ top: 0px;
58
+ left: 0px;
59
+ display: block;
60
+ width: 100%;
61
+ height: 100%;
62
+ background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
63
+ }
64
+
65
+ /*--------------
66
+ Icon
67
+ ---------------*/
68
+
69
+ .ui.embed > .icon {
70
+ cursor: pointer;
71
+ position: absolute;
72
+ top: 0px;
73
+ left: 0px;
74
+ width: 100%;
75
+ height: 100%;
76
+ z-index: 2;
77
+ }
78
+ .ui.embed > .icon:after {
79
+ position: absolute;
80
+ top: 0%;
81
+ left: 0%;
82
+ width: 100%;
83
+ height: 100%;
84
+ z-index: 3;
85
+ content: '';
86
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
87
+ background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
88
+ opacity: 0.5;
89
+ -webkit-transition: opacity 0.5s ease;
90
+ transition: opacity 0.5s ease;
91
+ }
92
+ .ui.embed > .icon:before {
93
+ position: absolute;
94
+ top: 50%;
95
+ left: 50%;
96
+ -webkit-transform: translateX(-50%) translateY(-50%);
97
+ transform: translateX(-50%) translateY(-50%);
98
+ color: #FFFFFF;
99
+ font-size: 6rem;
100
+ text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2);
101
+ -webkit-transition: opacity 0.5s ease, color 0.5s ease;
102
+ transition: opacity 0.5s ease, color 0.5s ease;
103
+ z-index: 10;
104
+ }
105
+
106
+
107
+ /*******************************
108
+ States
109
+ *******************************/
110
+
111
+
112
+ /*--------------
113
+ Hover
114
+ ---------------*/
115
+
116
+ .ui.embed .icon:hover:after {
117
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
118
+ background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
119
+ opacity: 1;
120
+ }
121
+ .ui.embed .icon:hover:before {
122
+ color: #FFFFFF;
123
+ }
124
+
125
+ /*--------------
126
+ Active
127
+ ---------------*/
128
+
129
+ .ui.active.embed > .icon,
130
+ .ui.active.embed > .placeholder {
131
+ display: none;
132
+ }
133
+ .ui.active.embed > .embed {
134
+ display: block;
135
+ }
136
+
137
+
138
+ /*******************************
139
+ Video Overrides
140
+ *******************************/
141
+
142
+
143
+
144
+ /*******************************
145
+ Site Overrides
146
+ *******************************/
147
+
148
+
149
+
150
+ /*******************************
151
+ Variations
152
+ *******************************/
153
+
154
+ .ui.square.embed {
155
+ padding-bottom: 100%;
156
+ }
157
+ .ui[class*="4:3"].embed {
158
+ padding-bottom: 75%;
159
+ }
160
+ .ui[class*="16:9"].embed {
161
+ padding-bottom: 56.25%;
162
+ }
163
+ .ui[class*="21:9"].embed {
164
+ padding-bottom: 42.85714286%;
165
+ }
@@ -0,0 +1,646 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Modal
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
+ Modal
14
+ *******************************/
15
+
16
+ .ui.modal {
17
+ position: absolute;
18
+ display: none;
19
+ z-index: 1001;
20
+ text-align: left;
21
+ background: #FFFFFF;
22
+ border: none;
23
+ -webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
24
+ box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
25
+ -webkit-transform-origin: 50% 25%;
26
+ transform-origin: 50% 25%;
27
+ -webkit-box-flex: 0;
28
+ -ms-flex: 0 0 auto;
29
+ flex: 0 0 auto;
30
+ border-radius: 0.28571429rem;
31
+ -webkit-user-select: text;
32
+ -moz-user-select: text;
33
+ -ms-user-select: text;
34
+ user-select: text;
35
+ will-change: top, left, margin, transform, opacity;
36
+ }
37
+ .ui.modal > :first-child:not(.icon),
38
+ .ui.modal > .icon:first-child + * {
39
+ border-top-left-radius: 0.28571429rem;
40
+ border-top-right-radius: 0.28571429rem;
41
+ }
42
+ .ui.modal > :last-child {
43
+ border-bottom-left-radius: 0.28571429rem;
44
+ border-bottom-right-radius: 0.28571429rem;
45
+ }
46
+
47
+
48
+ /*******************************
49
+ Content
50
+ *******************************/
51
+
52
+
53
+ /*--------------
54
+ Close
55
+ ---------------*/
56
+
57
+ .ui.modal > .close {
58
+ cursor: pointer;
59
+ position: absolute;
60
+ top: -2.5rem;
61
+ right: -2.5rem;
62
+ z-index: 1;
63
+ opacity: 0.8;
64
+ font-size: 1.25em;
65
+ color: #FFFFFF;
66
+ width: 2.25rem;
67
+ height: 2.25rem;
68
+ padding: 0.625rem 0rem 0rem 0rem;
69
+ }
70
+ .ui.modal > .close:hover {
71
+ opacity: 1;
72
+ }
73
+
74
+ /*--------------
75
+ Header
76
+ ---------------*/
77
+
78
+ .ui.modal > .header {
79
+ display: block;
80
+ font-family: $font-family;
81
+ background: #FFFFFF;
82
+ margin: 0em;
83
+ padding: 1.25rem 1.5rem;
84
+ -webkit-box-shadow: none;
85
+ box-shadow: none;
86
+ color: rgba(0, 0, 0, 0.85);
87
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
88
+ }
89
+ .ui.modal > .header:not(.ui) {
90
+ font-size: 1.42857143rem;
91
+ line-height: 1.28571429em;
92
+ font-weight: bold;
93
+ }
94
+
95
+ /*--------------
96
+ Content
97
+ ---------------*/
98
+
99
+ .ui.modal > .content {
100
+ display: block;
101
+ width: 100%;
102
+ font-size: 1em;
103
+ line-height: 1.4;
104
+ padding: 1.5rem;
105
+ background: #FFFFFF;
106
+ }
107
+ .ui.modal > .image.content {
108
+ display: -webkit-box;
109
+ display: -ms-flexbox;
110
+ display: flex;
111
+ -webkit-box-orient: horizontal;
112
+ -webkit-box-direction: normal;
113
+ -ms-flex-direction: row;
114
+ flex-direction: row;
115
+ -ms-flex-wrap: wrap;
116
+ flex-wrap: wrap;
117
+ }
118
+
119
+ /* Image */
120
+ .ui.modal > .content > .image {
121
+ display: block;
122
+ -webkit-box-flex: 0;
123
+ -ms-flex: 0 1 auto;
124
+ flex: 0 1 auto;
125
+ width: '';
126
+ -ms-flex-item-align: top;
127
+ align-self: top;
128
+ max-width: 100%;
129
+ }
130
+ .ui.modal > [class*="top aligned"] {
131
+ -ms-flex-item-align: top;
132
+ align-self: top;
133
+ }
134
+ .ui.modal > [class*="middle aligned"] {
135
+ -ms-flex-item-align: middle;
136
+ align-self: middle;
137
+ }
138
+ .ui.modal > [class*="stretched"] {
139
+ -ms-flex-item-align: stretch;
140
+ align-self: stretch;
141
+ }
142
+
143
+ /* Description */
144
+ .ui.modal > .content > .description {
145
+ display: block;
146
+ -webkit-box-flex: 1;
147
+ -ms-flex: 1 0 auto;
148
+ flex: 1 0 auto;
149
+ min-width: 0px;
150
+ -ms-flex-item-align: top;
151
+ align-self: top;
152
+ }
153
+ .ui.modal > .content > .icon + .description,
154
+ .ui.modal > .content > .image + .description {
155
+ -webkit-box-flex: 0;
156
+ -ms-flex: 0 1 auto;
157
+ flex: 0 1 auto;
158
+ min-width: '';
159
+ width: auto;
160
+ padding-left: 2em;
161
+ }
162
+ /*rtl:ignore*/
163
+ .ui.modal > .content > .image > i.icon {
164
+ margin: 0em;
165
+ opacity: 1;
166
+ width: auto;
167
+ line-height: 1;
168
+ font-size: 8rem;
169
+ }
170
+
171
+ /*--------------
172
+ Actions
173
+ ---------------*/
174
+
175
+ .ui.modal > .actions {
176
+ background: #F9FAFB;
177
+ padding: 1rem 1rem;
178
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
179
+ text-align: right;
180
+ }
181
+ .ui.modal .actions > .button {
182
+ margin-left: 0.75em;
183
+ }
184
+ .ui.basic.modal > .actions {
185
+ border-top: none;
186
+ }
187
+
188
+ /*-------------------
189
+ Responsive
190
+ --------------------*/
191
+
192
+
193
+ /* Modal Width */
194
+ @media only screen and (max-width: 767px) {
195
+ .ui.modal {
196
+ width: 95%;
197
+ margin: 0em 0em 0em 0em;
198
+ }
199
+ }
200
+ @media only screen and (min-width: 768px) {
201
+ .ui.modal {
202
+ width: 88%;
203
+ margin: 0em 0em 0em 0em;
204
+ }
205
+ }
206
+ @media only screen and (min-width: 992px) {
207
+ .ui.modal {
208
+ width: 850px;
209
+ margin: 0em 0em 0em 0em;
210
+ }
211
+ }
212
+ @media only screen and (min-width: 1200px) {
213
+ .ui.modal {
214
+ width: 900px;
215
+ margin: 0em 0em 0em 0em;
216
+ }
217
+ }
218
+ @media only screen and (min-width: 1920px) {
219
+ .ui.modal {
220
+ width: 950px;
221
+ margin: 0em 0em 0em 0em;
222
+ }
223
+ }
224
+
225
+ /* Tablet and Mobile */
226
+ @media only screen and (max-width: 991px) {
227
+ .ui.modal > .header {
228
+ padding-right: 2.25rem;
229
+ }
230
+ .ui.modal > .close {
231
+ top: 1.0535rem;
232
+ right: 1rem;
233
+ color: rgba(0, 0, 0, 0.87);
234
+ }
235
+ }
236
+
237
+ /* Mobile */
238
+ @media only screen and (max-width: 767px) {
239
+ .ui.modal > .header {
240
+ padding: 0.75rem 1rem !important;
241
+ padding-right: 2.25rem !important;
242
+ }
243
+ .ui.modal > .content {
244
+ display: block;
245
+ padding: 1rem !important;
246
+ }
247
+ .ui.modal > .close {
248
+ top: 0.5rem !important;
249
+ right: 0.5rem !important;
250
+ }
251
+ /*rtl:ignore*/
252
+ .ui.modal .image.content {
253
+ -webkit-box-orient: vertical;
254
+ -webkit-box-direction: normal;
255
+ -ms-flex-direction: column;
256
+ flex-direction: column;
257
+ }
258
+ .ui.modal .content > .image {
259
+ display: block;
260
+ max-width: 100%;
261
+ margin: 0em auto !important;
262
+ text-align: center;
263
+ padding: 0rem 0rem 1rem !important;
264
+ }
265
+ .ui.modal > .content > .image > i.icon {
266
+ font-size: 5rem;
267
+ text-align: center;
268
+ }
269
+ /*rtl:ignore*/
270
+ .ui.modal .content > .description {
271
+ display: block;
272
+ width: 100% !important;
273
+ margin: 0em !important;
274
+ padding: 1rem 0rem !important;
275
+ -webkit-box-shadow: none;
276
+ box-shadow: none;
277
+ }
278
+
279
+ /* Let Buttons Stack */
280
+ .ui.modal > .actions {
281
+ padding: 1rem 1rem 0rem !important;
282
+ }
283
+ .ui.modal .actions > .buttons,
284
+ .ui.modal .actions > .button {
285
+ margin-bottom: 1rem;
286
+ }
287
+ }
288
+
289
+ /*--------------
290
+ Coupling
291
+ ---------------*/
292
+
293
+ .ui.inverted.dimmer > .ui.modal {
294
+ -webkit-box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
295
+ box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
296
+ }
297
+
298
+
299
+ /*******************************
300
+ Types
301
+ *******************************/
302
+
303
+ .ui.basic.modal {
304
+ background-color: transparent;
305
+ border: none;
306
+ border-radius: 0em;
307
+ -webkit-box-shadow: none !important;
308
+ box-shadow: none !important;
309
+ color: #FFFFFF;
310
+ }
311
+ .ui.basic.modal > .header,
312
+ .ui.basic.modal > .content,
313
+ .ui.basic.modal > .actions {
314
+ background-color: transparent;
315
+ }
316
+ .ui.basic.modal > .header {
317
+ color: #FFFFFF;
318
+ }
319
+ .ui.basic.modal > .close {
320
+ top: 1rem;
321
+ right: 1.5rem;
322
+ color: #FFFFFF;
323
+ }
324
+ .ui.inverted.dimmer > .basic.modal {
325
+ color: rgba(0, 0, 0, 0.87);
326
+ }
327
+ .ui.inverted.dimmer > .ui.basic.modal > .header {
328
+ color: rgba(0, 0, 0, 0.85);
329
+ }
330
+
331
+ /* Resort to margin positioning if legacy */
332
+ .ui.legacy.legacy.modal,
333
+ .ui.legacy.legacy.page.dimmer > .ui.modal {
334
+ top: 50% !important;
335
+ left: 50% !important;
336
+ }
337
+ .ui.legacy.legacy.page.dimmer > .ui.scrolling.modal,
338
+ .ui.page.dimmer > .ui.scrolling.legacy.legacy.modal,
339
+ .ui.top.aligned.legacy.legacy.page.dimmer > .ui.modal,
340
+ .ui.top.aligned.dimmer > .ui.legacy.legacy.modal {
341
+ top: auto !important;
342
+ }
343
+
344
+
345
+ /*******************************
346
+ States
347
+ *******************************/
348
+
349
+ .ui.loading.modal {
350
+ display: block;
351
+ visibility: hidden;
352
+ z-index: -1;
353
+ }
354
+ .ui.active.modal {
355
+ display: block;
356
+ }
357
+
358
+
359
+ /*******************************
360
+ Variations
361
+ *******************************/
362
+
363
+
364
+ /*--------------
365
+ Top Aligned
366
+ ---------------*/
367
+
368
+
369
+ /* Top Aligned Modal */
370
+ .modals.dimmer[class*="top aligned"] .modal {
371
+ margin: 5vh auto;
372
+ }
373
+ @media only screen and (max-width: 767px) {
374
+ .modals.dimmer[class*="top aligned"] .modal {
375
+ margin: 1rem auto;
376
+ }
377
+ }
378
+
379
+ /* Legacy Top Aligned */
380
+ .legacy.modals.dimmer[class*="top aligned"] {
381
+ padding-top: 5vh;
382
+ }
383
+ @media only screen and (max-width: 767px) {
384
+ .legacy.modals.dimmer[class*="top aligned"] {
385
+ padding-top: 1rem;
386
+ }
387
+ }
388
+
389
+ /*--------------
390
+ Scrolling
391
+ ---------------*/
392
+
393
+
394
+ /* Scrolling Dimmer */
395
+ .scrolling.dimmable.dimmed {
396
+ overflow: hidden;
397
+ }
398
+ .scrolling.dimmable > .dimmer {
399
+ -webkit-box-pack: start;
400
+ -ms-flex-pack: start;
401
+ justify-content: flex-start;
402
+ position: fixed;
403
+ }
404
+ .scrolling.dimmable.dimmed > .dimmer {
405
+ overflow: auto;
406
+ -webkit-overflow-scrolling: touch;
407
+ }
408
+ .modals.dimmer .ui.scrolling.modal {
409
+ margin: 1rem auto;
410
+ }
411
+
412
+ /* Undetached Scrolling */
413
+ .scrolling.undetached.dimmable.dimmed {
414
+ overflow: auto;
415
+ -webkit-overflow-scrolling: touch;
416
+ }
417
+ .scrolling.undetached.dimmable.dimmed > .dimmer {
418
+ overflow: hidden;
419
+ }
420
+ .scrolling.undetached.dimmable .ui.scrolling.modal {
421
+ position: absolute;
422
+ left: 50%;
423
+ margin-top: 1rem !important;
424
+ }
425
+
426
+ /* Scrolling Content */
427
+ .ui.modal .scrolling.content {
428
+ max-height: calc(70vh);
429
+ overflow: auto;
430
+ }
431
+
432
+ /*--------------
433
+ Full Screen
434
+ ---------------*/
435
+
436
+ .ui.fullscreen.modal {
437
+ width: 95% !important;
438
+ left: 2.5% !important;
439
+ margin: 1em auto;
440
+ }
441
+ .ui.fullscreen.modal > .header {
442
+ padding-right: 2.25rem;
443
+ }
444
+ .ui.fullscreen.modal > .close {
445
+ top: 1.0535rem;
446
+ right: 1rem;
447
+ color: rgba(0, 0, 0, 0.87);
448
+ }
449
+ .ui.basic.fullscreen.modal > .close {
450
+ color: #FFFFFF;
451
+ }
452
+
453
+ /*--------------
454
+ Size
455
+ ---------------*/
456
+
457
+ .ui.modal {
458
+ font-size: 1rem;
459
+ }
460
+
461
+ /* Mini */
462
+ .ui.mini.modal > .header:not(.ui) {
463
+ font-size: 1.3em;
464
+ }
465
+
466
+ /* Mini Modal Width */
467
+ @media only screen and (max-width: 767px) {
468
+ .ui.mini.modal {
469
+ width: 95%;
470
+ margin: 0em 0em 0em 0em;
471
+ }
472
+ }
473
+ @media only screen and (min-width: 768px) {
474
+ .ui.mini.modal {
475
+ width: 35.2%;
476
+ margin: 0em 0em 0em 0em;
477
+ }
478
+ }
479
+ @media only screen and (min-width: 992px) {
480
+ .ui.mini.modal {
481
+ width: 340px;
482
+ margin: 0em 0em 0em 0em;
483
+ }
484
+ }
485
+ @media only screen and (min-width: 1200px) {
486
+ .ui.mini.modal {
487
+ width: 360px;
488
+ margin: 0em 0em 0em 0em;
489
+ }
490
+ }
491
+ @media only screen and (min-width: 1920px) {
492
+ .ui.mini.modal {
493
+ width: 380px;
494
+ margin: 0em 0em 0em 0em;
495
+ }
496
+ }
497
+
498
+ /* Tiny */
499
+ .ui.tiny.modal > .header:not(.ui) {
500
+ font-size: 1.3em;
501
+ }
502
+
503
+ /* Tiny Modal Width */
504
+ @media only screen and (max-width: 767px) {
505
+ .ui.tiny.modal {
506
+ width: 95%;
507
+ margin: 0em 0em 0em 0em;
508
+ }
509
+ }
510
+ @media only screen and (min-width: 768px) {
511
+ .ui.tiny.modal {
512
+ width: 52.8%;
513
+ margin: 0em 0em 0em 0em;
514
+ }
515
+ }
516
+ @media only screen and (min-width: 992px) {
517
+ .ui.tiny.modal {
518
+ width: 510px;
519
+ margin: 0em 0em 0em 0em;
520
+ }
521
+ }
522
+ @media only screen and (min-width: 1200px) {
523
+ .ui.tiny.modal {
524
+ width: 540px;
525
+ margin: 0em 0em 0em 0em;
526
+ }
527
+ }
528
+ @media only screen and (min-width: 1920px) {
529
+ .ui.tiny.modal {
530
+ width: 570px;
531
+ margin: 0em 0em 0em 0em;
532
+ }
533
+ }
534
+
535
+ /* Small */
536
+ .ui.small.modal > .header:not(.ui) {
537
+ font-size: 1.3em;
538
+ }
539
+
540
+ /* Small Modal Width */
541
+ @media only screen and (max-width: 767px) {
542
+ .ui.small.modal {
543
+ width: 95%;
544
+ margin: 0em 0em 0em 0em;
545
+ }
546
+ }
547
+ @media only screen and (min-width: 768px) {
548
+ .ui.small.modal {
549
+ width: 70.4%;
550
+ margin: 0em 0em 0em 0em;
551
+ }
552
+ }
553
+ @media only screen and (min-width: 992px) {
554
+ .ui.small.modal {
555
+ width: 680px;
556
+ margin: 0em 0em 0em 0em;
557
+ }
558
+ }
559
+ @media only screen and (min-width: 1200px) {
560
+ .ui.small.modal {
561
+ width: 720px;
562
+ margin: 0em 0em 0em 0em;
563
+ }
564
+ }
565
+ @media only screen and (min-width: 1920px) {
566
+ .ui.small.modal {
567
+ width: 760px;
568
+ margin: 0em 0em 0em 0em;
569
+ }
570
+ }
571
+
572
+ /* Large Modal Width */
573
+ .ui.large.modal > .header {
574
+ font-size: 1.6em;
575
+ }
576
+ @media only screen and (max-width: 767px) {
577
+ .ui.large.modal {
578
+ width: 95%;
579
+ margin: 0em 0em 0em 0em;
580
+ }
581
+ }
582
+ @media only screen and (min-width: 768px) {
583
+ .ui.large.modal {
584
+ width: 88%;
585
+ margin: 0em 0em 0em 0em;
586
+ }
587
+ }
588
+ @media only screen and (min-width: 992px) {
589
+ .ui.large.modal {
590
+ width: 1020px;
591
+ margin: 0em 0em 0em 0em;
592
+ }
593
+ }
594
+ @media only screen and (min-width: 1200px) {
595
+ .ui.large.modal {
596
+ width: 1080px;
597
+ margin: 0em 0em 0em 0em;
598
+ }
599
+ }
600
+ @media only screen and (min-width: 1920px) {
601
+ .ui.large.modal {
602
+ width: 1140px;
603
+ margin: 0em 0em 0em 0em;
604
+ }
605
+ }
606
+
607
+
608
+ /*****************************
609
+ Inverted
610
+ *******************************/
611
+
612
+ .ui.inverted.modal {
613
+ background: rgba(0, 0, 0, 0.9);
614
+ }
615
+ .ui.inverted.modal > .header,
616
+ .ui.inverted.modal > .content {
617
+ background: rgba(0, 0, 0, 0.9);
618
+ color: #FFFFFF;
619
+ }
620
+ .ui.inverted.modal > .actions {
621
+ background: #191A1B;
622
+ border-top: 1px solid rgba(34, 36, 38, 0.85);
623
+ }
624
+ .ui.inverted.dimmer > .modal > .close {
625
+ color: rgba(0, 0, 0, 0.85);
626
+ }
627
+ @media only screen and (max-width: 991px) {
628
+ .ui.dimmer .inverted.modal > .close {
629
+ color: #FFFFFF;
630
+ }
631
+ }
632
+ .ui.inverted.fullscreen.modal > .close {
633
+ color: #FFFFFF;
634
+ }
635
+
636
+
637
+ /*******************************
638
+ Theme Overrides
639
+ *******************************/
640
+
641
+
642
+
643
+ /*******************************
644
+ Site Overrides
645
+ *******************************/
646
+