semantic-ui-sass 2.2.10.1 → 2.2.11.0

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.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/semantic-ui/dropdown.js +108 -50
  3. data/app/assets/javascripts/semantic-ui/form.js +119 -19
  4. data/app/assets/javascripts/semantic-ui/modal.js +41 -16
  5. data/app/assets/javascripts/semantic-ui/popup.js +42 -31
  6. data/app/assets/javascripts/semantic-ui/search.js +11 -2
  7. data/app/assets/javascripts/semantic-ui/sidebar.js +1 -4
  8. data/app/assets/javascripts/semantic-ui/sticky.js +22 -5
  9. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  10. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +46 -59
  11. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +23 -52
  12. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +18 -26
  13. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +6 -6
  14. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +2 -2
  15. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -14
  16. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
  17. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  18. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  19. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
  20. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +25 -1
  21. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  22. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +4 -10
  23. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
  24. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +1 -1
  25. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
  26. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  27. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  28. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +14 -20
  29. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +22 -44
  30. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +254 -199
  31. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +44 -1
  32. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  33. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -1
  34. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +19 -3
  35. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +70 -39
  36. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
  37. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +96 -22
  38. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
  39. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
  40. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -3
  42. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  43. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  44. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -9
  45. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
  46. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  48. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  49. data/app/assets/stylesheets/semantic-ui/views/_card.scss +3 -12
  50. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +7 -11
  52. data/app/assets/stylesheets/semantic-ui/views/_item.scss +17 -23
  53. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +3 -19
  54. data/lib/semantic/ui/sass/version.rb +2 -2
  55. data/spec/helpers/semantic_icon_helper_spec.rb +9 -9
  56. metadata +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Site
2
+ * # Semantic UI 2.2.11 - Site
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -113,6 +113,12 @@ a:hover {
113
113
  }
114
114
 
115
115
 
116
+ /*******************************
117
+ Scrollbars
118
+ *******************************/
119
+
120
+
121
+
116
122
  /*******************************
117
123
  Highlighting
118
124
  *******************************/
@@ -149,6 +155,43 @@ input::selection {
149
155
  color: rgba(0, 0, 0, 0.87);
150
156
  }
151
157
 
158
+ /* Force Simple Scrollbars */
159
+ body ::-webkit-scrollbar {
160
+ -webkit-appearance: none;
161
+ width: 10px;
162
+ }
163
+ body ::-webkit-scrollbar-track {
164
+ background: rgba(0, 0, 0, 0.1);
165
+ border-radius: 0px;
166
+ }
167
+ body ::-webkit-scrollbar-thumb {
168
+ cursor: pointer;
169
+ border-radius: 5px;
170
+ background: rgba(0, 0, 0, 0.25);
171
+ -webkit-transition: color 0.2s ease;
172
+ transition: color 0.2s ease;
173
+ }
174
+ body ::-webkit-scrollbar-thumb:window-inactive {
175
+ background: rgba(0, 0, 0, 0.15);
176
+ }
177
+ body ::-webkit-scrollbar-thumb:hover {
178
+ background: rgba(128, 135, 139, 0.8);
179
+ }
180
+
181
+ /* Inverted UI */
182
+ body .ui.inverted::-webkit-scrollbar-track {
183
+ background: rgba(255, 255, 255, 0.1);
184
+ }
185
+ body .ui.inverted::-webkit-scrollbar-thumb {
186
+ background: rgba(255, 255, 255, 0.25);
187
+ }
188
+ body .ui.inverted::-webkit-scrollbar-thumb:window-inactive {
189
+ background: rgba(255, 255, 255, 0.15);
190
+ }
191
+ body .ui.inverted::-webkit-scrollbar-thumb:hover {
192
+ background: rgba(255, 255, 255, 0.35);
193
+ }
194
+
152
195
 
153
196
  /*******************************
154
197
  Global Overrides
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Accordion
2
+ * # Semantic UI 2.2.11 - Accordion
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Checkbox
2
+ * # Semantic UI 2.2.11 - Checkbox
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Dimmer
2
+ * # Semantic UI 2.2.11 - Dimmer
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -13,7 +13,7 @@
13
13
  Dimmer
14
14
  *******************************/
15
15
 
16
- .dimmable:not(.body) {
16
+ .dimmable:not(body) {
17
17
  position: relative;
18
18
  }
19
19
  .ui.dimmer {
@@ -63,6 +63,20 @@
63
63
  border-radius: inherit !important;
64
64
  }
65
65
 
66
+ /* Scrollbars */
67
+ .ui.dimmer:not(.inverted)::-webkit-scrollbar-track {
68
+ background: rgba(255, 255, 255, 0.1);
69
+ }
70
+ .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb {
71
+ background: rgba(255, 255, 255, 0.25);
72
+ }
73
+ .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive {
74
+ background: rgba(255, 255, 255, 0.15);
75
+ }
76
+ .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover {
77
+ background: rgba(255, 255, 255, 0.35);
78
+ }
79
+
66
80
 
67
81
  /*******************************
68
82
  States
@@ -117,8 +131,10 @@ body.dimmable > .dimmer {
117
131
  .blurring.dimmable > :not(.dimmer) {
118
132
  -webkit-filter: blur(0px) grayscale(0);
119
133
  filter: blur(0px) grayscale(0);
120
- -webkit-transition: 800ms filter ease;
134
+ -webkit-transition: 800ms -webkit-filter ease;
135
+ transition: 800ms -webkit-filter ease;
121
136
  transition: 800ms filter ease;
137
+ transition: 800ms filter ease, 800ms -webkit-filter ease;
122
138
  }
123
139
  .blurring.dimmed.dimmable > :not(.dimmer) {
124
140
  -webkit-filter: blur(5px) grayscale(0.7);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Dropdown
2
+ * # Semantic UI 2.2.11 - Dropdown
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -167,7 +167,6 @@
167
167
  .ui.dropdown .menu > .input {
168
168
  width: auto;
169
169
  display: -webkit-box;
170
- display: -webkit-flex;
171
170
  display: -ms-flexbox;
172
171
  display: flex;
173
172
  margin: 1.14285714rem 0.78571429rem;
@@ -215,8 +214,8 @@
215
214
 
216
215
  .ui.dropdown .menu .menu {
217
216
  top: 0% !important;
218
- left: 100% !important;
219
- right: auto !important;
217
+ left: 100%;
218
+ right: auto;
220
219
  margin: 0em 0em 0em -0.5em !important;
221
220
  border-radius: 0.28571429rem !important;
222
221
  z-index: 21 !important;
@@ -271,8 +270,10 @@
271
270
  .ui.dropdown .menu > .item > .image,
272
271
  .ui.dropdown .menu > .item > img {
273
272
  display: inline-block;
274
- vertical-align: middle;
273
+ vertical-align: top;
275
274
  width: auto;
275
+ margin-top: -0.5em;
276
+ margin-bottom: -0.5em;
276
277
  max-height: 2em;
277
278
  }
278
279
 
@@ -383,7 +384,7 @@ select.ui.dropdown {
383
384
  right: 1em;
384
385
  z-index: 3;
385
386
  margin: -0.78571429em;
386
- padding: 0.78571429em;
387
+ padding: 0.91666667em;
387
388
  opacity: 0.8;
388
389
  -webkit-transition: opacity 0.1s ease;
389
390
  transition: opacity 0.1s ease;
@@ -765,7 +766,9 @@ select.ui.dropdown {
765
766
 
766
767
  .ui.loading.dropdown > i.icon {
767
768
  height: 1em !important;
768
- padding: 1.14285714em 1.07142857em !important;
769
+ }
770
+ .ui.loading.selection.dropdown > i.icon {
771
+ padding: 1.5em 1.28571429em !important;
769
772
  }
770
773
  .ui.loading.dropdown > i.icon:before {
771
774
  position: absolute;
@@ -851,6 +854,14 @@ select.ui.dropdown {
851
854
  visibility: hidden;
852
855
  z-index: -1;
853
856
  }
857
+ .ui.dropdown > .loading.menu {
858
+ left: 0px !important;
859
+ right: auto !important;
860
+ }
861
+ .ui.dropdown > .menu .loading.menu {
862
+ left: 100% !important;
863
+ right: auto !important;
864
+ }
854
865
 
855
866
  /*--------------------
856
867
  Keyboard Select
@@ -951,28 +962,34 @@ select.ui.dropdown {
951
962
  border-radius: 0.28571429rem !important;
952
963
  }
953
964
 
954
- /* Left Flyout Menu */
965
+ /* Leftward Opening Menu */
966
+ .ui.dropdown > .left.menu {
967
+ left: auto !important;
968
+ right: 0px !important;
969
+ }
955
970
  .ui.dropdown > .left.menu .menu,
956
971
  .ui.dropdown .menu .left.menu {
957
- left: auto !important;
958
- right: 100% !important;
972
+ left: auto;
973
+ right: 100%;
974
+ margin: 0em -0.5em 0em 0em !important;
959
975
  border-radius: 0.28571429rem !important;
960
976
  }
961
977
  .ui.dropdown .item .left.dropdown.icon,
962
978
  .ui.dropdown .left.menu .item .dropdown.icon {
963
979
  width: auto;
964
980
  float: left;
965
- margin: 0em 0.78571429rem 0em 0em;
981
+ margin: 0em 0em 0em 0em;
966
982
  }
967
983
  .ui.dropdown .item .left.dropdown.icon,
968
984
  .ui.dropdown .left.menu .item .dropdown.icon {
969
985
  width: auto;
970
986
  float: left;
971
- margin: 0em 0.78571429rem 0em 0em;
987
+ margin: 0em 0em 0em 0em;
972
988
  }
973
989
  .ui.dropdown .item .left.dropdown.icon + .text,
974
990
  .ui.dropdown .left.menu .item .dropdown.icon + .text {
975
991
  margin-left: 1em;
992
+ margin-right: 0em;
976
993
  }
977
994
 
978
995
  /*--------------
@@ -1210,7 +1227,7 @@ select.ui.dropdown {
1210
1227
  transform: rotate(45deg);
1211
1228
  width: 0.5em;
1212
1229
  height: 0.5em;
1213
- box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
1230
+ box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1214
1231
  background: #FFFFFF;
1215
1232
  z-index: 2;
1216
1233
  }
@@ -1244,7 +1261,7 @@ select.ui.dropdown {
1244
1261
  transform: rotate(45deg);
1245
1262
  }
1246
1263
 
1247
- /* Top Right Pointing */
1264
+ /* Top Right Pointing */
1248
1265
  .ui.top.right.pointing.dropdown > .menu {
1249
1266
  top: 100%;
1250
1267
  bottom: auto;
@@ -1252,10 +1269,11 @@ select.ui.dropdown {
1252
1269
  left: auto;
1253
1270
  margin: 1em 0em 0em;
1254
1271
  }
1272
+ .ui.top.pointing.dropdown > .left.menu:after,
1255
1273
  .ui.top.right.pointing.dropdown > .menu:after {
1256
1274
  top: -0.25em;
1257
- left: auto;
1258
- right: 1em;
1275
+ left: auto !important;
1276
+ right: 1em !important;
1259
1277
  margin: 0em;
1260
1278
  -webkit-transform: rotate(45deg);
1261
1279
  transform: rotate(45deg);
@@ -1275,6 +1293,19 @@ select.ui.dropdown {
1275
1293
  -webkit-transform: rotate(-45deg);
1276
1294
  transform: rotate(-45deg);
1277
1295
  }
1296
+ .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu {
1297
+ left: auto !important;
1298
+ right: 100% !important;
1299
+ margin: 0em 1em 0em 0em;
1300
+ }
1301
+ .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after {
1302
+ top: 1em;
1303
+ left: auto;
1304
+ right: -0.25em;
1305
+ margin: 0em 0em 0em 0em;
1306
+ -webkit-transform: rotate(135deg);
1307
+ transform: rotate(135deg);
1308
+ }
1278
1309
 
1279
1310
  /* Right Pointing */
1280
1311
  .ui.right.pointing.dropdown > .menu {
@@ -1336,45 +1367,45 @@ select.ui.dropdown {
1336
1367
  }
1337
1368
 
1338
1369
  /* Upward pointing */
1339
- .ui.upward.pointing.dropdown > .menu,
1340
- .ui.upward.top.pointing.dropdown > .menu {
1341
- top: auto;
1342
- bottom: 100%;
1370
+ .ui.pointing.upward.dropdown .menu,
1371
+ .ui.top.pointing.upward.dropdown .menu {
1372
+ top: auto !important;
1373
+ bottom: 100% !important;
1343
1374
  margin: 0em 0em 0.78571429rem;
1344
1375
  border-radius: 0.28571429rem;
1345
1376
  }
1346
- .ui.upward.pointing.dropdown > .menu:after,
1347
- .ui.upward.top.pointing.dropdown > .menu:after {
1348
- top: 100%;
1349
- bottom: auto;
1350
- box-shadow: 1px 1px 0px 1px rgba(34, 36, 38, 0.15);
1377
+ .ui.pointing.upward.dropdown .menu:after,
1378
+ .ui.top.pointing.upward.dropdown .menu:after {
1379
+ top: 100% !important;
1380
+ bottom: auto !important;
1381
+ box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15);
1351
1382
  margin: -0.25em 0em 0em;
1352
1383
  }
1353
1384
 
1354
1385
  /* Right Pointing Upward */
1355
- .ui.upward.right.pointing.dropdown:not(.top):not(.bottom) > .menu {
1356
- top: auto;
1357
- bottom: 0;
1386
+ .ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
1387
+ top: auto !important;
1388
+ bottom: 0 !important;
1358
1389
  margin: 0em 1em 0em 0em;
1359
1390
  }
1360
- .ui.upward.right.pointing.dropdown:not(.top):not(.bottom) > .menu:after {
1361
- top: auto;
1362
- bottom: 0;
1391
+ .ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
1392
+ top: auto !important;
1393
+ bottom: 0 !important;
1363
1394
  margin: 0em 0em 1em 0em;
1364
- box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
1395
+ box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1365
1396
  }
1366
1397
 
1367
1398
  /* Left Pointing Upward */
1368
- .ui.upward.left.pointing.dropdown:not(.top):not(.bottom) > .menu {
1369
- top: auto;
1370
- bottom: 0;
1399
+ .ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
1400
+ top: auto !important;
1401
+ bottom: 0 !important;
1371
1402
  margin: 0em 0em 0em 1em;
1372
1403
  }
1373
- .ui.upward.left.pointing.dropdown:not(.top):not(.bottom) > .menu:after {
1374
- top: auto;
1375
- bottom: 0;
1404
+ .ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
1405
+ top: auto !important;
1406
+ bottom: 0 !important;
1376
1407
  margin: 0em 0em 1em 0em;
1377
- box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
1408
+ box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1378
1409
  }
1379
1410
 
1380
1411
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Video
2
+ * # Semantic UI 2.2.11 - Video
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Modal
2
+ * # Semantic UI 2.2.11 - Modal
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -103,12 +103,10 @@
103
103
  }
104
104
  .ui.modal > .image.content {
105
105
  display: -webkit-box;
106
- display: -webkit-flex;
107
106
  display: -ms-flexbox;
108
107
  display: flex;
109
108
  -webkit-box-orient: horizontal;
110
109
  -webkit-box-direction: normal;
111
- -webkit-flex-direction: row;
112
110
  -ms-flex-direction: row;
113
111
  flex-direction: row;
114
112
  }
@@ -117,46 +115,43 @@
117
115
  .ui.modal > .content > .image {
118
116
  display: block;
119
117
  -webkit-box-flex: 0;
120
- -webkit-flex: 0 1 auto;
121
118
  -ms-flex: 0 1 auto;
122
119
  flex: 0 1 auto;
123
120
  width: '';
124
- -webkit-align-self: top;
125
- -ms-flex-item-align: top;
126
- align-self: top;
121
+ -ms-flex-item-align: top;
122
+ -ms-grid-row-align: top;
123
+ align-self: top;
127
124
  }
128
125
  .ui.modal > [class*="top aligned"] {
129
- -webkit-align-self: top;
130
- -ms-flex-item-align: top;
131
- align-self: top;
126
+ -ms-flex-item-align: top;
127
+ -ms-grid-row-align: top;
128
+ align-self: top;
132
129
  }
133
130
  .ui.modal > [class*="middle aligned"] {
134
- -webkit-align-self: middle;
135
- -ms-flex-item-align: middle;
136
- align-self: middle;
131
+ -ms-flex-item-align: middle;
132
+ -ms-grid-row-align: middle;
133
+ align-self: middle;
137
134
  }
138
135
  .ui.modal > [class*="stretched"] {
139
- -webkit-align-self: stretch;
140
- -ms-flex-item-align: stretch;
141
- align-self: stretch;
136
+ -ms-flex-item-align: stretch;
137
+ -ms-grid-row-align: stretch;
138
+ align-self: stretch;
142
139
  }
143
140
 
144
141
  /* Description */
145
142
  .ui.modal > .content > .description {
146
143
  display: block;
147
144
  -webkit-box-flex: 1;
148
- -webkit-flex: 1 0 auto;
149
145
  -ms-flex: 1 0 auto;
150
146
  flex: 1 0 auto;
151
147
  min-width: 0px;
152
- -webkit-align-self: top;
153
- -ms-flex-item-align: top;
154
- align-self: top;
148
+ -ms-flex-item-align: top;
149
+ -ms-grid-row-align: top;
150
+ align-self: top;
155
151
  }
156
152
  .ui.modal > .content > .icon + .description,
157
153
  .ui.modal > .content > .image + .description {
158
154
  -webkit-box-flex: 0;
159
- -webkit-flex: 0 1 auto;
160
155
  -ms-flex: 0 1 auto;
161
156
  flex: 0 1 auto;
162
157
  min-width: '';
@@ -253,7 +248,6 @@
253
248
  .ui.modal .image.content {
254
249
  -webkit-box-orient: vertical;
255
250
  -webkit-box-direction: normal;
256
- -webkit-flex-direction: column;
257
251
  -ms-flex-direction: column;
258
252
  flex-direction: column;
259
253
  }
@@ -394,6 +388,12 @@
394
388
  }
395
389
  }
396
390
 
391
+ /* Scrolling Content */
392
+ .ui.modal .scrolling.content {
393
+ max-height: calc(70vh);
394
+ overflow: auto;
395
+ }
396
+
397
397
  /*--------------
398
398
  Full Screen
399
399
  ---------------*/
@@ -423,6 +423,80 @@
423
423
  font-size: 1rem;
424
424
  }
425
425
 
426
+ /* Mini */
427
+ .ui.mini.modal > .header:not(.ui) {
428
+ font-size: 1.3em;
429
+ }
430
+
431
+ /* Mini Modal Width */
432
+ @media only screen and (max-width: 767px) {
433
+ .ui.mini.modal {
434
+ width: 95%;
435
+ margin: 0em 0em 0em -47.5%;
436
+ }
437
+ }
438
+ @media only screen and (min-width: 768px) {
439
+ .ui.mini.modal {
440
+ width: 35.2%;
441
+ margin: 0em 0em 0em -17.6%;
442
+ }
443
+ }
444
+ @media only screen and (min-width: 992px) {
445
+ .ui.mini.modal {
446
+ width: 340px;
447
+ margin: 0em 0em 0em -170px;
448
+ }
449
+ }
450
+ @media only screen and (min-width: 1200px) {
451
+ .ui.mini.modal {
452
+ width: 360px;
453
+ margin: 0em 0em 0em -180px;
454
+ }
455
+ }
456
+ @media only screen and (min-width: 1920px) {
457
+ .ui.mini.modal {
458
+ width: 380px;
459
+ margin: 0em 0em 0em -190px;
460
+ }
461
+ }
462
+
463
+ /* mini */
464
+ .ui.small.modal > .header:not(.ui) {
465
+ font-size: 1.3em;
466
+ }
467
+
468
+ /* Tiny Modal Width */
469
+ @media only screen and (max-width: 767px) {
470
+ .ui.tiny.modal {
471
+ width: 95%;
472
+ margin: 0em 0em 0em -47.5%;
473
+ }
474
+ }
475
+ @media only screen and (min-width: 768px) {
476
+ .ui.tiny.modal {
477
+ width: 52.8%;
478
+ margin: 0em 0em 0em -26.4%;
479
+ }
480
+ }
481
+ @media only screen and (min-width: 992px) {
482
+ .ui.tiny.modal {
483
+ width: 510px;
484
+ margin: 0em 0em 0em -255px;
485
+ }
486
+ }
487
+ @media only screen and (min-width: 1200px) {
488
+ .ui.tiny.modal {
489
+ width: 540px;
490
+ margin: 0em 0em 0em -270px;
491
+ }
492
+ }
493
+ @media only screen and (min-width: 1920px) {
494
+ .ui.tiny.modal {
495
+ width: 570px;
496
+ margin: 0em 0em 0em -285px;
497
+ }
498
+ }
499
+
426
500
  /* Small */
427
501
  .ui.small.modal > .header:not(.ui) {
428
502
  font-size: 1.3em;