semantic-ui-sass 0.19.3.1 → 1.7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -6
  4. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  6. data/app/assets/fonts/semantic-ui/icons.svg +472 -367
  7. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  9. data/app/assets/images/semantic-ui/flags.png +0 -0
  10. data/app/assets/javascripts/semantic-ui.js +9 -5
  11. data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
  12. data/app/assets/javascripts/semantic-ui/api.js +840 -0
  13. data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
  14. data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
  15. data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
  16. data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
  17. data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
  18. data/app/assets/javascripts/semantic-ui/modal.js +294 -219
  19. data/app/assets/javascripts/semantic-ui/nag.js +120 -186
  20. data/app/assets/javascripts/semantic-ui/popup.js +491 -223
  21. data/app/assets/javascripts/semantic-ui/progress.js +779 -0
  22. data/app/assets/javascripts/semantic-ui/rating.js +66 -22
  23. data/app/assets/javascripts/semantic-ui/search.js +219 -99
  24. data/app/assets/javascripts/semantic-ui/shape.js +72 -29
  25. data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
  26. data/app/assets/javascripts/semantic-ui/site.js +487 -0
  27. data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
  28. data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
  29. data/app/assets/javascripts/semantic-ui/tab.js +680 -603
  30. data/app/assets/javascripts/semantic-ui/transition.js +269 -158
  31. data/app/assets/javascripts/semantic-ui/video.js +113 -32
  32. data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
  33. data/app/assets/javascripts/semantic-ui/visit.js +513 -0
  34. data/app/assets/stylesheets/semantic-ui.scss +2 -0
  35. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
  36. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
  37. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
  38. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
  39. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
  40. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
  41. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
  43. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
  44. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
  45. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
  46. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
  47. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
  48. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
  49. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
  50. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
  51. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
  52. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
  54. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
  55. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
  56. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
  57. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
  58. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
  59. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
  60. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
  62. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
  63. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
  64. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
  65. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
  66. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
  67. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
  69. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
  70. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
  71. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
  74. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
  75. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
  77. data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
  78. data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
  79. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
  80. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
  81. data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
  82. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
  83. data/lib/semantic/ui/sass/version.rb +2 -2
  84. data/tasks/converter.rb +99 -216
  85. metadata +22 -27
  86. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  87. data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
  88. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  89. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  90. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  91. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  92. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  93. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  94. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  95. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  96. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  97. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  98. data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
  99. data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
  100. data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
  101. data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
  102. data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
  103. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
  104. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
  105. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
  106. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
  107. data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,87 +1,84 @@
1
- /*
2
- * # Semantic - Nag
3
- * http://github.com/jlukic/semantic-ui/
4
- *
5
- *
6
- * Copyright 2014 Contributors
7
- * Released under the MIT license
8
- * http://opensource.org/licenses/MIT
9
- *
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
10
  */
11
11
 
12
- /*******************************
13
- Nag
12
+
13
+
14
+ /*******************************
15
+ Nag
14
16
  *******************************/
15
17
 
16
18
  .ui.nag {
17
19
  display: none;
18
20
  opacity: 0.95;
19
21
  position: relative;
20
- top: 0px;
21
- left: 0%;
22
- z-index: 101;
23
- min-height: 0;
22
+ top: 0em;
23
+ left: 0px;
24
+ z-index: 999;
25
+ min-height: 0em;
24
26
  width: 100%;
25
- -webkit-box-sizing: border-box;
26
- -moz-box-sizing: border-box;
27
- -ms-box-sizing: border-box;
28
- box-sizing: border-box;
29
27
  margin: 0em;
30
- line-height: 3em;
31
- padding: 0em 1em;
32
- background-color: #555555;
33
- -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
28
+ padding: 0.75em 1em;
29
+ background: #555555;
34
30
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
35
- font-size: 1em;
31
+ font-size: 1rem;
36
32
  text-align: center;
37
- color: rgba(255, 255, 255, 0.8);
38
- border-radius: 0px 0px 5px 5px;
39
- -webkit-transition: 0.2s background;
40
- transition: 0.2s background;
33
+ color: rgba(0, 0, 0, 0.8);
34
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
35
+ -webkit-transition: 0.2s background ease;
36
+ transition: 0.2s background ease;
41
37
  }
42
-
43
38
  a.ui.nag {
44
39
  cursor: pointer;
45
40
  }
46
-
47
41
  .ui.nag > .title {
48
42
  display: inline-block;
49
43
  margin: 0em 0.5em;
50
- color: #FFFFFF;
44
+ color: #ffffff;
51
45
  }
52
-
53
46
  .ui.nag > .close.icon {
54
47
  cursor: pointer;
55
48
  opacity: 0.4;
56
49
  position: absolute;
57
50
  top: 50%;
58
51
  right: 1em;
59
- margin-top: -0.5em;
60
- color: #FFFFFF;
61
- -webkit-transition: 0.1s opacity;
62
- transition: 0.1s opacity;
52
+ font-size: 1em;
53
+ margin: -0.5em 0em 0em;
54
+ color: #ffffff;
55
+ -webkit-transition: opacity 0.2s ease;
56
+ transition: opacity 0.2s ease;
63
57
  }
64
58
 
65
- /*******************************
66
- States
59
+
60
+ /*******************************
61
+ States
67
62
  *******************************/
68
63
 
69
- /* Hover */
70
64
 
65
+ /* Hover */
71
66
  .ui.nag:hover {
67
+ background: #555555;
72
68
  opacity: 1;
73
69
  }
74
-
75
70
  .ui.nag .close:hover {
76
71
  opacity: 1;
77
72
  }
78
73
 
79
- /*******************************
80
- Variations
74
+
75
+ /*******************************
76
+ Variations
81
77
  *******************************/
82
78
 
83
- /*--------------
84
- Static
79
+
80
+ /*--------------
81
+ Static
85
82
  ---------------*/
86
83
 
87
84
  .ui.overlay.nag {
@@ -89,50 +86,64 @@ a.ui.nag {
89
86
  display: block;
90
87
  }
91
88
 
92
- /*--------------
93
- Fixed
89
+ /*--------------
90
+ Fixed
94
91
  ---------------*/
95
92
 
96
93
  .ui.fixed.nag {
97
94
  position: fixed;
98
95
  }
99
96
 
100
- /*--------------
101
- Bottom
97
+ /*--------------
98
+ Bottom
102
99
  ---------------*/
103
100
 
101
+ .ui.bottom.nags,
104
102
  .ui.bottom.nag {
105
- border-radius: 5px 5px 0px 0px;
106
- }
107
-
108
- .ui.fixed.bottom.nags,
109
- .ui.fixed.bottom.nag {
103
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
110
104
  top: auto;
111
- bottom: 0px;
105
+ bottom: 0em;
112
106
  }
113
107
 
114
- /*--------------
115
- White
108
+ /*--------------
109
+ White
116
110
  ---------------*/
117
111
 
118
- .ui.white.nags .nag,
119
- .ui.white.nag {
120
- background-color: #F1F1F1;
121
- text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
122
- color: #ACACAC;
112
+ .ui.inverted.nags .nag,
113
+ .ui.inverted.nag {
114
+ background-color: #f0f0f0;
115
+ color: rgba(0, 0, 0, 0.85);
123
116
  }
124
-
125
- .ui.white.nags .nag .close,
126
- .ui.white.nags .nag .title,
127
- .ui.white.nag .close,
128
- .ui.white.nag .title {
129
- color: #333333;
117
+ .ui.inverted.nags .nag .close,
118
+ .ui.inverted.nags .nag .title,
119
+ .ui.inverted.nag .close,
120
+ .ui.inverted.nag .title {
121
+ color: rgba(0, 0, 0, 0.4);
130
122
  }
131
123
 
132
- /*******************************
133
- Groups
124
+
125
+ /*******************************
126
+ Groups
134
127
  *******************************/
135
128
 
136
129
  .ui.nags .nag {
137
- border-radius: 0px;
138
- }
130
+ border-radius: 0em !important;
131
+ }
132
+ .ui.nags .nag:last-child {
133
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
134
+ }
135
+ .ui.bottom.nags .nag:last-child {
136
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
137
+ }
138
+
139
+
140
+ /*******************************
141
+ Theme Overrides
142
+ *******************************/
143
+
144
+
145
+
146
+ /*******************************
147
+ User Overrides
148
+ *******************************/
149
+
@@ -1,16 +1,18 @@
1
- /*
2
- * # Semantic - Popup
3
- * http://github.com/jlukic/semantic-ui/
4
- *
5
- *
6
- * Copyright 2014 Contributors
7
- * Released under the MIT license
8
- * http://opensource.org/licenses/MIT
9
- *
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
10
  */
11
11
 
12
- /*******************************
13
- Popup
12
+
13
+
14
+ /*******************************
15
+ Popup
14
16
  *******************************/
15
17
 
16
18
  .ui.popup {
@@ -19,123 +21,104 @@
19
21
  top: 0px;
20
22
  right: 0px;
21
23
  z-index: 900;
22
- border: 1px solid rgba(0, 0, 0, 0.1);
24
+ border: 1px solid #cccccc;
25
+ min-width: -webkit-max-content;
26
+ min-width: -moz-max-content;
27
+ min-width: max-content;
23
28
  max-width: 250px;
24
- background-color: #FFFFFF;
25
- padding: 0.8em 1.2em;
26
- font-size: 0.875rem;
29
+ background-color: #ffffff;
30
+ padding: 0.833em 1em;
27
31
  font-weight: normal;
28
32
  font-style: normal;
29
- color: rgba(0, 0, 0, 0.7);
30
- border-radius: 0.2em;
31
- -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
32
- box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
33
+ color: rgba(0, 0, 0, 0.8);
34
+ border-radius: 0.2857rem;
35
+ box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
33
36
  }
34
-
35
- .ui.popup .header {
36
- padding: 0em 0em 0.5em;
37
+ .ui.popup > .header {
38
+ padding: 0em;
39
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
37
40
  font-size: 1.125em;
38
41
  line-height: 1.2;
39
42
  font-weight: bold;
40
43
  }
41
-
44
+ .ui.popup > .header + .content {
45
+ padding-top: 0.5em;
46
+ }
42
47
  .ui.popup:before {
43
48
  position: absolute;
44
- content: "";
49
+ content: '';
45
50
  width: 0.75em;
46
- height: 0.75rem;
47
- background-image: none;
48
- background-color: #FFFFFF;
51
+ height: 0.75em;
52
+ background: #ffffff;
49
53
  -webkit-transform: rotate(45deg);
50
- -ms-transform: rotate(45deg);
51
- transform: rotate(45deg);
54
+ -ms-transform: rotate(45deg);
55
+ transform: rotate(45deg);
52
56
  z-index: 2;
53
- -webkit-box-sizing: border-box;
54
- -moz-box-sizing: border-box;
55
- -ms-box-sizing: border-box;
56
- box-sizing: border-box;
57
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
58
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
57
+ box-shadow: 1px 1px 0px 0px #b3b3b3;
59
58
  }
60
59
 
61
- .ui.popup .ui.button {
62
- width: 100%;
63
- }
64
60
 
65
- /*******************************
66
- Types
61
+ /*******************************
62
+ Types
67
63
  *******************************/
68
64
 
69
- /*--------------
70
- Spacing
65
+
66
+ /*--------------
67
+ Spacing
71
68
  ---------------*/
72
69
 
73
70
  .ui.popup {
74
71
  margin: 0em;
75
72
  }
76
-
77
73
  .ui.popup.bottom {
78
74
  margin: 0.75em 0em 0em;
79
75
  }
80
-
81
76
  .ui.popup.top {
82
77
  margin: 0em 0em 0.75em;
83
78
  }
84
-
85
79
  .ui.popup.left.center {
86
80
  margin: 0em 0.75em 0em 0em;
87
81
  }
88
-
89
82
  .ui.popup.right.center {
90
83
  margin: 0em 0em 0em 0.75em;
91
84
  }
92
85
 
93
- .ui.popup.center {
94
- margin-left: -1.25em;
95
- }
96
-
97
- /*--------------
98
- Pointer
86
+ /*--------------
87
+ Pointer
99
88
  ---------------*/
100
89
 
90
+
101
91
  /*--- Below ---*/
102
92
 
103
93
  .ui.bottom.center.popup:before {
104
- margin-left: -0.4em;
105
- top: -0.4em;
94
+ margin-left: -0.325em;
95
+ top: -0.325em;
106
96
  left: 50%;
107
97
  right: auto;
108
98
  bottom: auto;
109
- -webkit-box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
110
- box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
99
+ box-shadow: -1px -1px 0px 0px #b3b3b3;
111
100
  }
112
-
113
101
  .ui.bottom.left.popup {
114
- margin-right: -2em;
102
+ margin-left: 0em;
115
103
  }
116
-
117
104
  .ui.bottom.left.popup:before {
118
- top: -0.4em;
119
- right: 1em;
105
+ top: -0.325em;
106
+ left: 1em;
107
+ right: auto;
120
108
  bottom: auto;
121
- left: auto;
122
109
  margin-left: 0em;
123
- -webkit-box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
124
- box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
110
+ box-shadow: -1px -1px 0px 0px #b3b3b3;
125
111
  }
126
-
127
112
  .ui.bottom.right.popup {
128
- margin-left: -2em;
113
+ margin-right: 0em;
129
114
  }
130
-
131
115
  .ui.bottom.right.popup:before {
132
- top: -0.4em;
133
- left: 1em;
134
- right: auto;
116
+ top: -0.325em;
117
+ right: 1em;
135
118
  bottom: auto;
119
+ left: auto;
136
120
  margin-left: 0em;
137
- -webkit-box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
138
- box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
121
+ box-shadow: -1px -1px 0px 0px #b3b3b3;
139
122
  }
140
123
 
141
124
  /*--- Above ---*/
@@ -143,32 +126,28 @@
143
126
  .ui.top.center.popup:before {
144
127
  top: auto;
145
128
  right: auto;
146
- bottom: -0.4em;
129
+ bottom: -0.325em;
147
130
  left: 50%;
148
- margin-left: -0.4em;
131
+ margin-left: -0.325em;
149
132
  }
150
-
151
133
  .ui.top.left.popup {
152
- margin-right: -2em;
134
+ margin-left: 0em;
153
135
  }
154
-
155
136
  .ui.top.left.popup:before {
156
- bottom: -0.4em;
157
- right: 1em;
137
+ bottom: -0.325em;
138
+ left: 1em;
158
139
  top: auto;
159
- left: auto;
140
+ right: auto;
160
141
  margin-left: 0em;
161
142
  }
162
-
163
143
  .ui.top.right.popup {
164
- margin-left: -2em;
144
+ margin-right: 0em;
165
145
  }
166
-
167
146
  .ui.top.right.popup:before {
168
- bottom: -0.4em;
169
- left: 1em;
147
+ bottom: -0.325em;
148
+ right: 1em;
170
149
  top: auto;
171
- right: auto;
150
+ left: auto;
172
151
  margin-left: 0em;
173
152
  }
174
153
 
@@ -176,77 +155,142 @@
176
155
 
177
156
  .ui.left.center.popup:before {
178
157
  top: 50%;
179
- right: -0.35em;
158
+ right: -0.325em;
180
159
  bottom: auto;
181
160
  left: auto;
182
- margin-top: -0.4em;
183
- -webkit-box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.2);
184
- box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.2);
161
+ margin-top: -0.325em;
162
+ box-shadow: 1px -1px 0px 0px #b3b3b3;
185
163
  }
186
164
 
187
165
  /*--- Right Center ---*/
188
166
 
189
167
  .ui.right.center.popup:before {
190
168
  top: 50%;
191
- left: -0.35em;
169
+ left: -0.325em;
192
170
  bottom: auto;
193
171
  right: auto;
194
- margin-top: -0.4em;
195
- -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
196
- box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
172
+ margin-top: -0.325em;
173
+ box-shadow: -1px 1px 0px 0px #b3b3b3;
174
+ }
175
+
176
+
177
+ /*******************************
178
+ Coupling
179
+ *******************************/
180
+
181
+
182
+ /* Immediate Nested Grid */
183
+ .ui.popup > .ui.grid:not(.padded) {
184
+ width: -webkit-calc(100% + 1.75rem);
185
+ width: calc(100% + 1.75rem);
186
+ margin: -0.7rem -0.875rem;
197
187
  }
198
188
 
199
- /*******************************
200
- States
189
+
190
+ /*******************************
191
+ States
201
192
  *******************************/
202
193
 
203
194
  .ui.loading.popup {
204
195
  display: block;
205
196
  visibility: hidden;
197
+ z-index: -1;
206
198
  }
207
-
208
199
  .ui.animating.popup,
209
200
  .ui.visible.popup {
210
201
  display: block;
211
202
  }
212
203
 
213
- /*******************************
214
- Variations
204
+
205
+ /*******************************
206
+ Variations
215
207
  *******************************/
216
208
 
217
- /*--------------
218
- Size
209
+
210
+ /*--------------
211
+ Basic
219
212
  ---------------*/
220
213
 
221
- .ui.small.popup {
222
- font-size: 0.75rem;
214
+ .ui.basic.popup:before {
215
+ display: none;
223
216
  }
224
217
 
225
- .ui.large.popup {
226
- font-size: 1rem;
218
+ /*--------------
219
+ Wide
220
+ ---------------*/
221
+
222
+ .ui.wide.popup {
223
+ width: 350px;
224
+ max-width: 350px;
225
+ }
226
+ .ui[class*="very wide"].popup {
227
+ width: 550px;
228
+ max-width: 550px;
227
229
  }
228
230
 
229
- /*--------------
230
- Colors
231
+ /*--------------
232
+ Fluid
233
+ ---------------*/
234
+
235
+ .ui.fluid.popup {
236
+ width: 100%;
237
+ max-width: none;
238
+ }
239
+
240
+ /*--------------
241
+ Colors
231
242
  ---------------*/
232
243
 
233
- /* Inverted colors */
234
244
 
245
+ /* Inverted colors */
235
246
  .ui.inverted.popup {
236
- background-color: #333333;
247
+ background: #1b1c1d;
248
+ color: #ffffff;
237
249
  border: none;
238
- color: #FFFFFF;
239
- -webkit-box-shadow: none;
240
250
  box-shadow: none;
241
251
  }
242
-
243
252
  .ui.inverted.popup .header {
244
- background-color: rgba(0, 0, 0, 0.2);
245
- color: #FFFFFF;
253
+ background-color: none;
254
+ color: #ffffff;
246
255
  }
247
-
248
256
  .ui.inverted.popup:before {
249
- background-color: #333333;
250
- -webkit-box-shadow: none;
251
- box-shadow: none;
252
- }
257
+ background-color: #1b1c1d;
258
+ box-shadow: none !important;
259
+ }
260
+
261
+ /*--------------
262
+ Flowing
263
+ ---------------*/
264
+
265
+ .ui.flowing.popup {
266
+ max-width: none;
267
+ }
268
+
269
+ /*--------------
270
+ Sizes
271
+ ---------------*/
272
+
273
+ .ui.small.popup {
274
+ font-size: 0.785714rem;
275
+ }
276
+ .ui.popup {
277
+ font-size: 0.85714rem;
278
+ }
279
+ .ui.large.popup {
280
+ font-size: 1rem;
281
+ }
282
+ .ui.huge.popup {
283
+ font-size: 1.14285rem;
284
+ }
285
+
286
+
287
+ /*******************************
288
+ Theme Overrides
289
+ *******************************/
290
+
291
+
292
+
293
+ /*******************************
294
+ User Overrides
295
+ *******************************/
296
+