diff --git a/cloud/index.html b/cloud/index.html new file mode 100644 index 0000000..9c7156e --- /dev/null +++ b/cloud/index.html @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + UAParser @cloud | Analyze user-agent data for accurate insights via REST API + + + + + + + + + + +
+
+
+

+ UAParser @cloud +

+

Turning Raw User Data into Valuable Insights

+ UAParser.js Illustration +
+
+
+
+
+
+
+
+

+ +
Real-Time Analysis
+

+

Instantly analyze user-agent data for accurate insights.

+
+
+
+
+

+ +
Seamless Integration
+

+

Effortlessly integrate our service to your existing stack using REST API.

+
+
+
+
+

+ +
+ Optimize & Enhance +
+

+

Improve analytics, security, & personalization with precision.

+
+
+
+
+

Pricing

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StarterBasicPlusProfessionalAdvanced
API Traffics + 25,000 + 100,000 + 250,000 + 500,000 + More +
+ Monthly price + +

$9

+
+

$19

+
+

$29

+
+

$49

+
+ Customized +
+ + + + + + + + + + +
+
+ UNDER DEVELOPMENT +
+
+ UAParser.js Illustration +
+
+
+

Coming Soon in 3.. 2..

+

Be the first to know when UAParser @cloud API is live! Subscribe now and get exclusive early access, updates, and special offers.

+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ +
+ + + + + + \ No newline at end of file diff --git a/images/bots-traffic.png b/images/bots-traffic.png index 98dd545..a708a94 100644 Binary files a/images/bots-traffic.png and b/images/bots-traffic.png differ diff --git a/images/client-hints.png b/images/client-hints.png index a281d93..196beb8 100644 Binary files a/images/client-hints.png and b/images/client-hints.png differ diff --git a/images/device-type.png b/images/device-type.png index 62e43ca..4dc42b6 100644 Binary files a/images/device-type.png and b/images/device-type.png differ diff --git a/images/uap-cloud-api.png b/images/uap-cloud-api.png new file mode 100644 index 0000000..d412942 Binary files /dev/null and b/images/uap-cloud-api.png differ diff --git a/images/uap-cloud-header.png b/images/uap-cloud-header.png new file mode 100644 index 0000000..12113f3 Binary files /dev/null and b/images/uap-cloud-header.png differ diff --git a/index.html b/index.html index bf3f16c..44fe99d 100644 --- a/index.html +++ b/index.html @@ -15,7 +15,7 @@ - UAParser.js - Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent & Client Hints data using JavaScript. Supports browser & node.js environment. Also available as jQuery plugin & TypeScript-ready development. + UAParser.js | Detect Browser, Engine, OS, CPU, and Device type/model. @@ -37,13 +37,12 @@
-

UAParser.js

-

Abstracts Away The Hassle of User-Agent Detection

- +

UAParser.js

+

Abstracts Away The Hassle of User-Agent Detection

+ Demo + Download + @cloud + Docs
UAParser.js Illustration
@@ -315,7 +314,7 @@ console.log(device.vendor); // Nokia console.log(device.model); // N900 - READ THE DOCS + READ DOCS
@@ -402,7 +401,7 @@ console.log(uap.getBrowser().name); // "Safari" </html> - READ THE DOCS + READ DOCS
@@ -446,7 +445,7 @@ http.createServer(function (req, res) { console.log('Server running at http://127.0.0.1:1337/'); - READ THE DOCS + READ DOCS
@@ -510,7 +509,7 @@ $('body') $.ua.device.type); - READ THE DOCS + READ DOCS
@@ -545,7 +544,7 @@ $('body') $ npx ua-parser-js "Flock/2.16 (Zenwalk 7.3; es_PR;)" >> log.txt - READ THE DOCS + READ DOCS
@@ -648,7 +647,7 @@ $ npx ua-parser-js "Flock/2.16 (Zenwalk 7.3; es_PR;)" >> log.txt
-
+
Microsoft logo @@ -1307,7 +1306,7 @@ $ npx ua-parser-js "Flock/2.16 (Zenwalk 7.3; es_PR;)" >> log.txt the value from using this library
- organization backer photosorganization backer photos individual backer photos @@ -1317,19 +1316,19 @@ $ npx ua-parser-js "Flock/2.16 (Zenwalk 7.3; es_PR;)" >> log.txt

Contributors
Those who collaborate and continuously improve this library to be awesome

- contributor photoscontributor photos
@@ -1338,7 +1337,7 @@ $ npx ua-parser-js "Flock/2.16 (Zenwalk 7.3; es_PR;)" >> log.txt
-

Package Options
Comparison between our open-source & commercial editions
+

UAParser.js Package Options
Comparison between our open-source & commercial editions

@@ -1536,6 +1535,30 @@ $ npx ua-parser-js "Flock/2.16 (Zenwalk 7.3; es_PR;)" >> log.txt
+
+ New: UAParser @Cloud +
+
+
+

UAParser @cloud
NEW
Our @cloud REST API web service offers seamless integration with any tech stack
+

+ UAParser.js Illustration +
# Example
+POST https://api.uaparser.dev/cloud/v1/identify/device
+
+Content-Type: application/json
+Authorization: Bearer YOUR_API_KEY
+
+{
+  "headers": {
+    "User-Agent" : "Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_1_1 like Mac OS X; en) AppleWebKit/534.46.0 (KHTML, like Gecko) CriOS/19.0.1084.60 Mobile/9B206 Safari/7534.48.3"
+  }
+}
+ +
+
BONUS: WEB DEVELOPMENT TRIVIA
diff --git a/js/script.js b/js/script.js index a9da2bc..72cec62 100644 --- a/js/script.js +++ b/js/script.js @@ -143,6 +143,17 @@ $(document) hide: 300 } }); + $(window).on('scroll', function () { + if ($('#showcase img').offset().top < $(window).scrollTop() + $(window).height()) { + $('#showcase img') + .transition({ + animation : 'jiggle', + duration : 1000, + interval : 500 + }); + $(window).off('scroll'); + } + }); var clipboard = new ClipboardJS('#btn-clipboard'); clipboard.on('success', function(e) { diff --git a/js/ua-parser.js b/js/ua-parser.js index 6f7b1fb..ab102f1 100644 --- a/js/ua-parser.js +++ b/js/ua-parser.js @@ -1,4 +1,4 @@ -/* UAParser.js v2.0.0 - Copyright © 2012-2024 Faisal Salman +/* UAParser.js v2.0.3 + Copyright © 2012-2025 Faisal Salman AGPLv3 License */ -!function(i,d){"use strict";function e(i){for(var e={},t=0;tC?Ci(i,C):i),this}]]).setUA(r),this}Ui.VERSION="2.0.0",Ui.BROWSER=e([m,v,p,f]),Ui.CPU=e([k]),Ui.DEVICE=e([h,g,f,x,y,t,r,o,s]),Ui.ENGINE=Ui.OS=e([m,v]),typeof exports!==b?(typeof module!==b&&module.exports&&(exports=module.exports=Ui),exports.UAParser=Ui):typeof define===u&&define.amd?define(function(){return Ui}):li&&(i.UAParser=Ui);var ji,Ei=li&&(i.jQuery||i.Zepto);Ei&&!Ei.ua&&(ji=new Ui,Ei.ua=ji.getResult(),Ei.ua.get=function(){return ji.getUA()},Ei.ua.set=function(i){ji.setUA(i);var e,t=ji.getResult();for(e in t)Ei.ua[e]=t[e]})}("object"==typeof window?window:this); \ No newline at end of file +((i,l)=>{function U(i){for(var e={},t=0;t{var t,o={},r=e;if(!_i(e))for(var a in r={},e)for(var s in e[a])r[s]=e[a][s].concat(r[s]||[]);for(t in i)o[t]=r[t]&&r[t].length%2==0?r[t].concat(i[t]):i[t];return o})(Ii,e):Ii,j.call(this,[["getBrowser",(n=function(i){return i==g?function(){return new Bi(i,r,s,a).set("ua",r).set(u,this.getBrowser()).set(h,this.getCPU()).set(p,this.getDevice()).set(m,this.getEngine()).set(f,this.getOS()).get()}:function(){return new Bi(i,r,s[i],a).parseUA().get()}})(u)],["getCPU",n(h)],["getDevice",n(p)],["getEngine",n(m)],["getOS",n(f)],["getResult",n(g)],["getUA",function(){return r}],["setUA",function(i){return H(i)&&(r=i.length>E?Hi(i,E):i),this}]]).setUA(r),this):new I(i,e,t).getResult()}I.VERSION="2.0.3",I.BROWSER=U([v,y,L,k]),I.CPU=U([C]),I.DEVICE=U([T,x,k,G,S,e,r,t,D]),I.ENGINE=I.OS=U([v,y]),typeof exports!==n?(exports=typeof module!==n&&module.exports?module.exports=I:exports).UAParser=I:typeof define===R&&define.amd?define(function(){return I}):Ti&&(i.UAParser=I);var Ri,Vi=Ti&&(i.jQuery||i.Zepto);Vi&&!Vi.ua&&(Ri=new I,Vi.ua=Ri.getResult(),Vi.ua.get=function(){return Ri.getUA()},Vi.ua.set=function(i){Ri.setUA(i);var e,t=Ri.getResult();for(e in t)Vi.ua[e]=t[e]})})("object"==typeof window?window:this); \ No newline at end of file diff --git a/semantic-ui/semantic.css b/semantic-ui/semantic.css old mode 100644 new mode 100755 index 908bcb9..727eff1 --- a/semantic-ui/semantic.css +++ b/semantic-ui/semantic.css @@ -1,16 +1,16 @@ /* - * # Semantic UI - 2.4.0 + * # Semantic UI - 2.5.0 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * - * Copyright 2014 Contributors + * Copyright 2022 Contributors * Released under the MIT license * http://opensource.org/licenses/MIT * */ -@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:500|Source+Code+Pro:500|Source+Sans+Pro:400,700,400italic,700italic&subset=latin'); +@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:500|Source+Sans+Pro:400,700,400italic,700italic&subset=latin'); /*! - * # Semantic UI 2.4.0 - Reset + * # Semantic UI 2.5.0 - Reset * http://github.com/semantic-org/semantic-ui/ * * @@ -28,12 +28,10 @@ *, *:before, *:after { - -webkit-box-sizing: inherit; box-sizing: inherit; } html { - -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -131,7 +129,6 @@ figure { */ hr { - -webkit-box-sizing: content-box; box-sizing: content-box; /* 1 */ height: 0; @@ -395,7 +392,6 @@ fieldset { */ legend { - -webkit-box-sizing: border-box; box-sizing: border-box; /* 1 */ color: inherit; @@ -437,7 +433,6 @@ textarea { [type="checkbox"], [type="radio"] { - -webkit-box-sizing: border-box; box-sizing: border-box; /* 1 */ padding: 0; @@ -541,7 +536,7 @@ template { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Site + * # Semantic UI 2.5.0 - Site * http://github.com/semantic-org/semantic-ui/ * * @@ -585,7 +580,7 @@ h2, h3, h4, h5 { - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; line-height: 1.28571429em; margin: calc(2rem - 0.14285714em ) 0em 1rem; font-weight: bold; @@ -699,6 +694,12 @@ input::-moz-selection { color: rgba(0, 0, 0, 0.87); } +textarea::-moz-selection, +input::-moz-selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} + textarea::selection, input::selection { background-color: rgba(100, 100, 100, 0.4); @@ -760,7 +761,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Button + * # Semantic UI 2.5.0 - Button * http://github.com/semantic-org/semantic-ui/ * * @@ -793,16 +794,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { text-align: center; text-decoration: none; border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; - -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; will-change: ''; -webkit-tap-highlight-color: transparent; } @@ -818,7 +815,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.button:hover { background-color: #CACBCD; background-image: none; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; color: rgba(0, 0, 0, 0.8); } @@ -835,7 +831,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { background-color: #CACBCD; color: rgba(0, 0, 0, 0.8); background-image: '' !important; - -webkit-box-shadow: '' !important; box-shadow: '' !important; } @@ -852,7 +847,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { background-color: #BABBBC; background-image: ''; color: rgba(0, 0, 0, 0.9); - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, none; box-shadow: 0px 0px 0px 1px transparent inset, none; } @@ -863,7 +857,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.active.button { background-color: #C0C1C2; background-image: none; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset; box-shadow: 0px 0px 0px 1px transparent inset; color: rgba(0, 0, 0, 0.95); } @@ -892,7 +885,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: transparent !important; opacity: 1; pointer-events: auto; - -webkit-transition: all 0s linear, opacity 0.1s ease; transition: all 0s linear, opacity 0.1s ease; } @@ -924,36 +916,30 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { border-color: #FFFFFF transparent transparent; border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; } .ui.labeled.icon.loading.button .icon { background-color: transparent; - -webkit-box-shadow: none; box-shadow: none; } @-webkit-keyframes button-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes button-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @@ -978,7 +964,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { cursor: default; opacity: 0.45 !important; background-image: none !important; - -webkit-box-shadow: none !important; box-shadow: none !important; pointer-events: none !important; } @@ -1023,7 +1008,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.animated.button .visible.content, .ui.animated.button .hidden.content { - -webkit-transition: right 0.3s ease 0s; transition: right 0.3s ease 0s; } @@ -1055,14 +1039,10 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.vertical.animated.button .visible.content, .ui.vertical.animated.button .hidden.content { - -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease; - transition: top 0.3s ease, -webkit-transform 0.3s ease; transition: top 0.3s ease, transform 0.3s ease; - transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; } .ui.vertical.animated.button .visible.content { - -webkit-transform: translateY(0%); transform: translateY(0%); right: auto; } @@ -1075,7 +1055,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.vertical.animated.button:focus .visible.content, .ui.vertical.animated.button:hover .visible.content { - -webkit-transform: translateY(200%); transform: translateY(200%); right: auto; } @@ -1090,17 +1069,13 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.fade.animated.button .visible.content, .ui.fade.animated.button .hidden.content { - -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease; - transition: opacity 0.3s ease, -webkit-transform 0.3s ease; transition: opacity 0.3s ease, transform 0.3s ease; - transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; } .ui.fade.animated.button .visible.content { left: auto; right: auto; opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } @@ -1108,7 +1083,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { opacity: 0; left: 0%; right: auto; - -webkit-transform: scale(1.5); transform: scale(1.5); } @@ -1117,7 +1091,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { left: auto; right: auto; opacity: 0; - -webkit-transform: scale(0.75); transform: scale(0.75); } @@ -1126,7 +1099,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { left: 0%; right: auto; opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } @@ -1135,7 +1107,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { --------------------*/ .ui.inverted.button { - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; background: transparent none; color: #FFFFFF; @@ -1166,7 +1137,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.button:hover { background: #FFFFFF; - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; color: rgba(0, 0, 0, 0.8); } @@ -1176,7 +1146,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.button:focus, .ui.inverted.button.active { background: #FFFFFF; - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; color: rgba(0, 0, 0, 0.8); } @@ -1185,7 +1154,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.button.active:focus { background: #DCDDDE; - -webkit-box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; color: rgba(0, 0, 0, 0.8); } @@ -1195,17 +1163,11 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { --------------------*/ .ui.labeled.button:not(.icon) { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; background: none !important; padding: 0px !important; border: none !important; - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -1214,11 +1176,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.labeled.button > .label { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; margin: 0px 0px 0px -1px !important; padding: ''; @@ -1268,7 +1226,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: #FFFFFF; text-shadow: none; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1291,7 +1248,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: #FFFFFF; text-shadow: none; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1314,7 +1270,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: #FFFFFF; text-shadow: none; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1357,7 +1312,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: #FFFFFF; text-shadow: none; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1380,7 +1334,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: #FFFFFF; text-shadow: none; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1403,7 +1356,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: #FFFFFF; text-shadow: none; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1425,7 +1377,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { background-color: #4D7198; color: #FFFFFF; background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1447,7 +1398,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { height: 0.85714286em; opacity: 0.8; margin: 0em 0.42857143em 0em -0.21428571em; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; vertical-align: ''; color: ''; @@ -1582,12 +1532,10 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { border-radius: 0.28571429rem; text-transform: none; text-shadow: none !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; } .ui.basic.buttons { - -webkit-box-shadow: none; box-shadow: none; border: 1px solid rgba(34, 36, 38, 0.15); border-radius: 0.28571429rem; @@ -1601,7 +1549,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.button:hover { background: #FFFFFF !important; color: rgba(0, 0, 0, 0.8) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1609,7 +1556,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.button:focus { background: #FFFFFF !important; color: rgba(0, 0, 0, 0.8) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -1617,14 +1563,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.button:active { background: #F8F8F8 !important; color: rgba(0, 0, 0, 0.9) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; } .ui.basic.buttons .active.button, .ui.basic.active.button { background: rgba(0, 0, 0, 0.05) !important; - -webkit-box-shadow: '' !important; box-shadow: '' !important; color: rgba(0, 0, 0, 0.95) !important; } @@ -1637,17 +1581,14 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { /* Vertical */ .ui.basic.buttons .button:hover { - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset; box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset; } .ui.basic.buttons .button:active { - -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset; } .ui.basic.buttons .active.button { - -webkit-box-shadow: '' !important; box-shadow: '' !important; } @@ -1657,21 +1598,18 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.inverted.button { background-color: transparent !important; color: #F9FAFB !important; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; } .ui.basic.inverted.buttons .button:hover, .ui.basic.inverted.button:hover { color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; box-shadow: 0px 0px 0px 2px #ffffff inset !important; } .ui.basic.inverted.buttons .button:focus, .ui.basic.inverted.button:focus { color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; box-shadow: 0px 0px 0px 2px #ffffff inset !important; } @@ -1679,7 +1617,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.inverted.button:active { background-color: rgba(255, 255, 255, 0.08) !important; color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; } @@ -1688,14 +1625,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.08); color: #FFFFFF; text-shadow: none; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; } .ui.basic.inverted.buttons .active.button:hover, .ui.basic.inverted.active.button:hover { background-color: rgba(255, 255, 255, 0.15); - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; box-shadow: 0px 0px 0px 2px #ffffff inset !important; } @@ -1703,7 +1638,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.buttons .button { border-left: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; box-shadow: none; } @@ -1746,7 +1680,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { width: 2.57142857em; background-color: rgba(0, 0, 0, 0.05); color: ''; - -webkit-box-shadow: -1px 0px 0px 0px transparent inset; box-shadow: -1px 0px 0px 0px transparent inset; } @@ -1771,7 +1704,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { border-radius: 0px; border-top-right-radius: inherit; border-bottom-right-radius: inherit; - -webkit-box-shadow: 1px 0px 0px 0px transparent inset; box-shadow: 1px 0px 0px 0px transparent inset; } @@ -1784,10 +1716,41 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { width: 100%; top: 50%; text-align: center; - -webkit-transform: translateY(-50%); transform: translateY(-50%); } +/* Loading */ + +.ui.labeled.icon.button > .icon.loading { + -webkit-animation: none; + animation: none; +} + +.ui.labeled.icon.button > .icon.loading:before { + -webkit-animation: labeled-button-icon-loading 2s linear infinite; + animation: labeled-button-icon-loading 2s linear infinite; +} + +@-webkit-keyframes labeled-button-icon-loading { + from { + transform: translateY(-50%) rotate(0deg); + } + + to { + transform: translateY(-50%) rotate(360deg); + } +} + +@keyframes labeled-button-icon-loading { + from { + transform: translateY(-50%) rotate(0deg); + } + + to { + transform: translateY(-50%) rotate(360deg); + } +} + .ui.labeled.icon.buttons .button > .icon { border-radius: 0em; } @@ -1830,7 +1793,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.buttons .button.toggle.active, .ui.button.toggle.active { background-color: #21BA45 !important; - -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: none; color: #FFFFFF !important; @@ -1883,7 +1845,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { color: rgba(0, 0, 0, 0.4); font-style: normal; font-weight: bold; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset; box-shadow: 0px 0px 0px 1px transparent inset; } @@ -1912,7 +1873,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { display: block; margin: 0em; border-radius: 0em; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; } @@ -1947,8 +1907,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.attached.buttons { position: relative; - display: -webkit-box; - display: -ms-flexbox; display: flex; border-radius: 0em; width: auto !important; @@ -2000,8 +1958,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { /* Left / Right */ .ui[class*="left attached"].buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; margin-right: 0em; margin-left: -1px; @@ -2019,8 +1975,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui[class*="right attached"].buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; margin-left: 0em; margin-right: -1px; @@ -2103,7 +2057,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.eight.buttons > .button { - width: 12.500%; + width: 12.5%; } .ui.nine.buttons { @@ -2142,8 +2096,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.fluid.vertical.buttons, .ui.fluid.vertical.buttons > .button { - display: -webkit-box; - display: -ms-flexbox; display: flex; width: auto; } @@ -2173,7 +2125,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.eight.vertical.buttons > .button { - height: 12.500%; + height: 12.5%; } .ui.nine.vertical.buttons > .button { @@ -2207,7 +2159,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.black.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -2245,7 +2196,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.black.buttons .button, .ui.basic.black.button { - -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; color: #1B1C1D !important; } @@ -2253,7 +2203,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.black.buttons .button:hover, .ui.basic.black.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; box-shadow: 0px 0px 0px 1px #27292a inset !important; color: #27292a !important; } @@ -2261,7 +2210,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.black.buttons .button:focus, .ui.basic.black.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #2f3032 inset !important; box-shadow: 0px 0px 0px 1px #2f3032 inset !important; color: #27292a !important; } @@ -2269,14 +2217,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.black.buttons .active.button, .ui.basic.black.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; color: #343637 !important; } .ui.basic.black.buttons .button:active, .ui.basic.black.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important; box-shadow: 0px 0px 0px 1px #343637 inset !important; color: #343637 !important; } @@ -2290,7 +2236,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.buttons .button, .ui.inverted.black.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; color: #FFFFFF; } @@ -2303,7 +2248,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.button.active, .ui.inverted.black.buttons .button:active, .ui.inverted.black.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -2334,7 +2278,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.buttons .basic.button, .ui.inverted.black.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -2342,7 +2285,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.basic.buttons .button:hover, .ui.inverted.black.buttons .basic.button:hover, .ui.inverted.black.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; box-shadow: 0px 0px 0px 2px #000000 inset !important; color: #FFFFFF !important; } @@ -2350,7 +2292,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.basic.buttons .button:focus, .ui.inverted.black.basic.buttons .button:focus, .ui.inverted.black.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; box-shadow: 0px 0px 0px 2px #000000 inset !important; color: #545454 !important; } @@ -2358,7 +2299,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.basic.buttons .active.button, .ui.inverted.black.buttons .basic.active.button, .ui.inverted.black.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; box-shadow: 0px 0px 0px 2px #000000 inset !important; color: #FFFFFF !important; } @@ -2366,7 +2306,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.black.basic.buttons .button:active, .ui.inverted.black.buttons .basic.button:active, .ui.inverted.black.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; box-shadow: 0px 0px 0px 2px #000000 inset !important; color: #FFFFFF !important; } @@ -2382,7 +2321,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.grey.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -2420,7 +2358,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.grey.buttons .button, .ui.basic.grey.button { - -webkit-box-shadow: 0px 0px 0px 1px #767676 inset !important; box-shadow: 0px 0px 0px 1px #767676 inset !important; color: #767676 !important; } @@ -2428,7 +2365,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.grey.buttons .button:hover, .ui.basic.grey.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #838383 inset !important; box-shadow: 0px 0px 0px 1px #838383 inset !important; color: #838383 !important; } @@ -2436,7 +2372,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.grey.buttons .button:focus, .ui.basic.grey.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; color: #838383 !important; } @@ -2444,14 +2379,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.grey.buttons .active.button, .ui.basic.grey.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #696969 inset !important; box-shadow: 0px 0px 0px 1px #696969 inset !important; color: #909090 !important; } .ui.basic.grey.buttons .button:active, .ui.basic.grey.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #909090 inset !important; box-shadow: 0px 0px 0px 1px #909090 inset !important; color: #909090 !important; } @@ -2465,7 +2398,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.buttons .button, .ui.inverted.grey.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; color: #FFFFFF; } @@ -2478,7 +2410,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.button.active, .ui.inverted.grey.buttons .button:active, .ui.inverted.grey.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: rgba(0, 0, 0, 0.6); } @@ -2509,7 +2440,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.buttons .basic.button, .ui.inverted.grey.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -2517,7 +2447,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.basic.buttons .button:hover, .ui.inverted.grey.buttons .basic.button:hover, .ui.inverted.grey.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; color: #FFFFFF !important; } @@ -2525,7 +2454,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.basic.buttons .button:focus, .ui.inverted.grey.basic.buttons .button:focus, .ui.inverted.grey.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; color: #DCDDDE !important; } @@ -2533,7 +2461,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.basic.buttons .active.button, .ui.inverted.grey.buttons .basic.active.button, .ui.inverted.grey.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; color: #FFFFFF !important; } @@ -2541,7 +2468,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.grey.basic.buttons .button:active, .ui.inverted.grey.buttons .basic.button:active, .ui.inverted.grey.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; color: #FFFFFF !important; } @@ -2557,7 +2483,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.brown.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -2595,7 +2520,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.brown.buttons .button, .ui.basic.brown.button { - -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset !important; box-shadow: 0px 0px 0px 1px #A5673F inset !important; color: #A5673F !important; } @@ -2603,7 +2527,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.brown.buttons .button:hover, .ui.basic.brown.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #975b33 inset !important; box-shadow: 0px 0px 0px 1px #975b33 inset !important; color: #975b33 !important; } @@ -2611,7 +2534,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.brown.buttons .button:focus, .ui.basic.brown.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #90532b inset !important; box-shadow: 0px 0px 0px 1px #90532b inset !important; color: #975b33 !important; } @@ -2619,14 +2541,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.brown.buttons .active.button, .ui.basic.brown.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #995a31 inset !important; box-shadow: 0px 0px 0px 1px #995a31 inset !important; color: #805031 !important; } .ui.basic.brown.buttons .button:active, .ui.basic.brown.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #805031 inset !important; box-shadow: 0px 0px 0px 1px #805031 inset !important; color: #805031 !important; } @@ -2640,7 +2560,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.buttons .button, .ui.inverted.brown.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D67C1C inset !important; box-shadow: 0px 0px 0px 2px #D67C1C inset !important; color: #D67C1C; } @@ -2653,7 +2572,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.button.active, .ui.inverted.brown.buttons .button:active, .ui.inverted.brown.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -2684,7 +2602,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.buttons .basic.button, .ui.inverted.brown.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -2692,7 +2609,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.basic.buttons .button:hover, .ui.inverted.brown.buttons .basic.button:hover, .ui.inverted.brown.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #c86f11 inset !important; box-shadow: 0px 0px 0px 2px #c86f11 inset !important; color: #D67C1C !important; } @@ -2700,7 +2616,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.basic.buttons .button:focus, .ui.inverted.brown.basic.buttons .button:focus, .ui.inverted.brown.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #c16808 inset !important; box-shadow: 0px 0px 0px 2px #c16808 inset !important; color: #D67C1C !important; } @@ -2708,7 +2623,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.basic.buttons .active.button, .ui.inverted.brown.buttons .basic.active.button, .ui.inverted.brown.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; color: #D67C1C !important; } @@ -2716,7 +2630,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.brown.basic.buttons .button:active, .ui.inverted.brown.buttons .basic.button:active, .ui.inverted.brown.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #a96216 inset !important; box-shadow: 0px 0px 0px 2px #a96216 inset !important; color: #D67C1C !important; } @@ -2732,7 +2645,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.blue.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -2770,7 +2682,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.blue.buttons .button, .ui.basic.blue.button { - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important; box-shadow: 0px 0px 0px 1px #2185D0 inset !important; color: #2185D0 !important; } @@ -2778,7 +2689,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.blue.buttons .button:hover, .ui.basic.blue.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important; box-shadow: 0px 0px 0px 1px #1678c2 inset !important; color: #1678c2 !important; } @@ -2786,7 +2696,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.blue.buttons .button:focus, .ui.basic.blue.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important; box-shadow: 0px 0px 0px 1px #0d71bb inset !important; color: #1678c2 !important; } @@ -2794,14 +2703,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.blue.buttons .active.button, .ui.basic.blue.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important; box-shadow: 0px 0px 0px 1px #1279c6 inset !important; color: #1a69a4 !important; } .ui.basic.blue.buttons .button:active, .ui.basic.blue.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; color: #1a69a4 !important; } @@ -2815,7 +2722,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.buttons .button, .ui.inverted.blue.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #54C8FF inset !important; box-shadow: 0px 0px 0px 2px #54C8FF inset !important; color: #54C8FF; } @@ -2828,7 +2734,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.button.active, .ui.inverted.blue.buttons .button:active, .ui.inverted.blue.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -2859,7 +2764,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.buttons .basic.button, .ui.inverted.blue.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -2867,7 +2771,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.basic.buttons .button:hover, .ui.inverted.blue.buttons .basic.button:hover, .ui.inverted.blue.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; color: #54C8FF !important; } @@ -2875,7 +2778,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.basic.buttons .button:focus, .ui.inverted.blue.basic.buttons .button:focus, .ui.inverted.blue.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #2bbbff inset !important; box-shadow: 0px 0px 0px 2px #2bbbff inset !important; color: #54C8FF !important; } @@ -2883,7 +2785,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.basic.buttons .active.button, .ui.inverted.blue.buttons .basic.active.button, .ui.inverted.blue.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; color: #54C8FF !important; } @@ -2891,7 +2792,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.blue.basic.buttons .button:active, .ui.inverted.blue.buttons .basic.button:active, .ui.inverted.blue.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #21b8ff inset !important; box-shadow: 0px 0px 0px 2px #21b8ff inset !important; color: #54C8FF !important; } @@ -2907,7 +2807,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.green.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -2945,7 +2844,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.green.buttons .button, .ui.basic.green.button { - -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important; box-shadow: 0px 0px 0px 1px #21BA45 inset !important; color: #21BA45 !important; } @@ -2953,7 +2851,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.green.buttons .button:hover, .ui.basic.green.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important; box-shadow: 0px 0px 0px 1px #16ab39 inset !important; color: #16ab39 !important; } @@ -2961,7 +2858,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.green.buttons .button:focus, .ui.basic.green.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important; box-shadow: 0px 0px 0px 1px #0ea432 inset !important; color: #16ab39 !important; } @@ -2969,14 +2865,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.green.buttons .active.button, .ui.basic.green.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important; box-shadow: 0px 0px 0px 1px #13ae38 inset !important; color: #198f35 !important; } .ui.basic.green.buttons .button:active, .ui.basic.green.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important; box-shadow: 0px 0px 0px 1px #198f35 inset !important; color: #198f35 !important; } @@ -2990,7 +2884,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.buttons .button, .ui.inverted.green.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; color: #2ECC40; } @@ -3003,7 +2896,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.button.active, .ui.inverted.green.buttons .button:active, .ui.inverted.green.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -3034,7 +2926,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.buttons .basic.button, .ui.inverted.green.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -3042,7 +2933,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.basic.buttons .button:hover, .ui.inverted.green.buttons .basic.button:hover, .ui.inverted.green.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #22be34 inset !important; box-shadow: 0px 0px 0px 2px #22be34 inset !important; color: #2ECC40 !important; } @@ -3050,7 +2940,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.basic.buttons .button:focus, .ui.inverted.green.basic.buttons .button:focus, .ui.inverted.green.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #19b82b inset !important; box-shadow: 0px 0px 0px 2px #19b82b inset !important; color: #2ECC40 !important; } @@ -3058,7 +2947,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.basic.buttons .active.button, .ui.inverted.green.buttons .basic.active.button, .ui.inverted.green.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #1fc231 inset !important; box-shadow: 0px 0px 0px 2px #1fc231 inset !important; color: #2ECC40 !important; } @@ -3066,7 +2954,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.green.basic.buttons .button:active, .ui.inverted.green.buttons .basic.button:active, .ui.inverted.green.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #25a233 inset !important; box-shadow: 0px 0px 0px 2px #25a233 inset !important; color: #2ECC40 !important; } @@ -3082,7 +2969,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.orange.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -3120,7 +3006,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.orange.buttons .button, .ui.basic.orange.button { - -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset !important; box-shadow: 0px 0px 0px 1px #F2711C inset !important; color: #F2711C !important; } @@ -3128,7 +3013,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.orange.buttons .button:hover, .ui.basic.orange.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #f26202 inset !important; box-shadow: 0px 0px 0px 1px #f26202 inset !important; color: #f26202 !important; } @@ -3136,7 +3020,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.orange.buttons .button:focus, .ui.basic.orange.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e55b00 inset !important; box-shadow: 0px 0px 0px 1px #e55b00 inset !important; color: #f26202 !important; } @@ -3144,14 +3027,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.orange.buttons .active.button, .ui.basic.orange.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #f56100 inset !important; box-shadow: 0px 0px 0px 1px #f56100 inset !important; color: #cf590c !important; } .ui.basic.orange.buttons .button:active, .ui.basic.orange.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #cf590c inset !important; box-shadow: 0px 0px 0px 1px #cf590c inset !important; color: #cf590c !important; } @@ -3165,7 +3046,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.buttons .button, .ui.inverted.orange.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FF851B inset !important; box-shadow: 0px 0px 0px 2px #FF851B inset !important; color: #FF851B; } @@ -3178,7 +3058,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.button.active, .ui.inverted.orange.buttons .button:active, .ui.inverted.orange.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -3209,7 +3088,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.buttons .basic.button, .ui.inverted.orange.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -3217,7 +3095,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.basic.buttons .button:hover, .ui.inverted.orange.buttons .basic.button:hover, .ui.inverted.orange.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important; box-shadow: 0px 0px 0px 2px #ff7701 inset !important; color: #FF851B !important; } @@ -3225,7 +3102,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.basic.buttons .button:focus, .ui.inverted.orange.basic.buttons .button:focus, .ui.inverted.orange.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #f17000 inset !important; box-shadow: 0px 0px 0px 2px #f17000 inset !important; color: #FF851B !important; } @@ -3233,7 +3109,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.basic.buttons .active.button, .ui.inverted.orange.buttons .basic.active.button, .ui.inverted.orange.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important; box-shadow: 0px 0px 0px 2px #ff7701 inset !important; color: #FF851B !important; } @@ -3241,7 +3116,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.orange.basic.buttons .button:active, .ui.inverted.orange.buttons .basic.button:active, .ui.inverted.orange.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #e76b00 inset !important; box-shadow: 0px 0px 0px 2px #e76b00 inset !important; color: #FF851B !important; } @@ -3257,7 +3131,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.pink.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -3295,7 +3168,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.pink.buttons .button, .ui.basic.pink.button { - -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset !important; box-shadow: 0px 0px 0px 1px #E03997 inset !important; color: #E03997 !important; } @@ -3303,7 +3175,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.pink.buttons .button:hover, .ui.basic.pink.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e61a8d inset !important; box-shadow: 0px 0px 0px 1px #e61a8d inset !important; color: #e61a8d !important; } @@ -3311,7 +3182,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.pink.buttons .button:focus, .ui.basic.pink.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e10f85 inset !important; box-shadow: 0px 0px 0px 1px #e10f85 inset !important; color: #e61a8d !important; } @@ -3319,14 +3189,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.pink.buttons .active.button, .ui.basic.pink.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ea158d inset !important; box-shadow: 0px 0px 0px 1px #ea158d inset !important; color: #c71f7e !important; } .ui.basic.pink.buttons .button:active, .ui.basic.pink.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #c71f7e inset !important; box-shadow: 0px 0px 0px 1px #c71f7e inset !important; color: #c71f7e !important; } @@ -3340,7 +3208,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.buttons .button, .ui.inverted.pink.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; color: #FF8EDF; } @@ -3353,7 +3220,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.button.active, .ui.inverted.pink.buttons .button:active, .ui.inverted.pink.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -3384,7 +3250,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.buttons .basic.button, .ui.inverted.pink.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -3392,7 +3257,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.basic.buttons .button:hover, .ui.inverted.pink.buttons .basic.button:hover, .ui.inverted.pink.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; color: #FF8EDF !important; } @@ -3400,7 +3264,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.basic.buttons .button:focus, .ui.inverted.pink.basic.buttons .button:focus, .ui.inverted.pink.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; color: #FF8EDF !important; } @@ -3408,7 +3271,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.basic.buttons .active.button, .ui.inverted.pink.buttons .basic.active.button, .ui.inverted.pink.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; color: #FF8EDF !important; } @@ -3416,7 +3278,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.pink.basic.buttons .button:active, .ui.inverted.pink.buttons .basic.button:active, .ui.inverted.pink.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; color: #FF8EDF !important; } @@ -3432,7 +3293,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.violet.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -3470,7 +3330,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.violet.buttons .button, .ui.basic.violet.button { - -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset !important; box-shadow: 0px 0px 0px 1px #6435C9 inset !important; color: #6435C9 !important; } @@ -3478,7 +3337,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.violet.buttons .button:hover, .ui.basic.violet.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #5829bb inset !important; box-shadow: 0px 0px 0px 1px #5829bb inset !important; color: #5829bb !important; } @@ -3486,7 +3344,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.violet.buttons .button:focus, .ui.basic.violet.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; color: #5829bb !important; } @@ -3494,14 +3351,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.violet.buttons .active.button, .ui.basic.violet.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #5626bf inset !important; box-shadow: 0px 0px 0px 1px #5626bf inset !important; color: #502aa1 !important; } .ui.basic.violet.buttons .button:active, .ui.basic.violet.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #502aa1 inset !important; box-shadow: 0px 0px 0px 1px #502aa1 inset !important; color: #502aa1 !important; } @@ -3515,7 +3370,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.buttons .button, .ui.inverted.violet.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #A291FB inset !important; box-shadow: 0px 0px 0px 2px #A291FB inset !important; color: #A291FB; } @@ -3528,7 +3382,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.button.active, .ui.inverted.violet.buttons .button:active, .ui.inverted.violet.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -3559,7 +3412,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.buttons .basic.button, .ui.inverted.violet.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -3567,7 +3419,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.basic.buttons .button:hover, .ui.inverted.violet.buttons .basic.button:hover, .ui.inverted.violet.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important; box-shadow: 0px 0px 0px 2px #8a73ff inset !important; color: #A291FB !important; } @@ -3575,7 +3426,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.basic.buttons .button:focus, .ui.inverted.violet.basic.buttons .button:focus, .ui.inverted.violet.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #7d64ff inset !important; box-shadow: 0px 0px 0px 2px #7d64ff inset !important; color: #A291FB !important; } @@ -3583,7 +3433,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.basic.buttons .active.button, .ui.inverted.violet.buttons .basic.active.button, .ui.inverted.violet.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important; box-shadow: 0px 0px 0px 2px #8a73ff inset !important; color: #A291FB !important; } @@ -3591,7 +3440,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.violet.basic.buttons .button:active, .ui.inverted.violet.buttons .basic.button:active, .ui.inverted.violet.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #7860f9 inset !important; box-shadow: 0px 0px 0px 2px #7860f9 inset !important; color: #A291FB !important; } @@ -3607,7 +3455,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.purple.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -3645,7 +3492,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.purple.buttons .button, .ui.basic.purple.button { - -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset !important; box-shadow: 0px 0px 0px 1px #A333C8 inset !important; color: #A333C8 !important; } @@ -3653,7 +3499,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.purple.buttons .button:hover, .ui.basic.purple.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #9627ba inset !important; box-shadow: 0px 0px 0px 1px #9627ba inset !important; color: #9627ba !important; } @@ -3661,7 +3506,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.purple.buttons .button:focus, .ui.basic.purple.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; color: #9627ba !important; } @@ -3669,14 +3513,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.purple.buttons .active.button, .ui.basic.purple.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #9724be inset !important; box-shadow: 0px 0px 0px 1px #9724be inset !important; color: #82299f !important; } .ui.basic.purple.buttons .button:active, .ui.basic.purple.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #82299f inset !important; box-shadow: 0px 0px 0px 1px #82299f inset !important; color: #82299f !important; } @@ -3690,7 +3532,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.buttons .button, .ui.inverted.purple.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #DC73FF inset !important; box-shadow: 0px 0px 0px 2px #DC73FF inset !important; color: #DC73FF; } @@ -3703,7 +3544,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.button.active, .ui.inverted.purple.buttons .button:active, .ui.inverted.purple.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -3734,7 +3574,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.buttons .basic.button, .ui.inverted.purple.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -3742,7 +3581,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.basic.buttons .button:hover, .ui.inverted.purple.buttons .basic.button:hover, .ui.inverted.purple.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important; box-shadow: 0px 0px 0px 2px #d65aff inset !important; color: #DC73FF !important; } @@ -3750,7 +3588,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.basic.buttons .button:focus, .ui.inverted.purple.basic.buttons .button:focus, .ui.inverted.purple.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #d24aff inset !important; box-shadow: 0px 0px 0px 2px #d24aff inset !important; color: #DC73FF !important; } @@ -3758,7 +3595,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.basic.buttons .active.button, .ui.inverted.purple.buttons .basic.active.button, .ui.inverted.purple.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important; box-shadow: 0px 0px 0px 2px #d65aff inset !important; color: #DC73FF !important; } @@ -3766,7 +3602,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.purple.basic.buttons .button:active, .ui.inverted.purple.buttons .basic.button:active, .ui.inverted.purple.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #cf40ff inset !important; box-shadow: 0px 0px 0px 2px #cf40ff inset !important; color: #DC73FF !important; } @@ -3782,7 +3617,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.red.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -3820,7 +3654,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.red.buttons .button, .ui.basic.red.button { - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important; box-shadow: 0px 0px 0px 1px #DB2828 inset !important; color: #DB2828 !important; } @@ -3828,7 +3661,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.red.buttons .button:hover, .ui.basic.red.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important; box-shadow: 0px 0px 0px 1px #d01919 inset !important; color: #d01919 !important; } @@ -3836,7 +3668,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.red.buttons .button:focus, .ui.basic.red.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important; box-shadow: 0px 0px 0px 1px #ca1010 inset !important; color: #d01919 !important; } @@ -3844,14 +3675,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.red.buttons .active.button, .ui.basic.red.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important; box-shadow: 0px 0px 0px 1px #d41515 inset !important; color: #b21e1e !important; } .ui.basic.red.buttons .button:active, .ui.basic.red.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important; box-shadow: 0px 0px 0px 1px #b21e1e inset !important; color: #b21e1e !important; } @@ -3865,7 +3694,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.buttons .button, .ui.inverted.red.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FF695E inset !important; box-shadow: 0px 0px 0px 2px #FF695E inset !important; color: #FF695E; } @@ -3878,7 +3706,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.button.active, .ui.inverted.red.buttons .button:active, .ui.inverted.red.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -3909,7 +3736,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.buttons .basic.button, .ui.inverted.red.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -3917,7 +3743,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.basic.buttons .button:hover, .ui.inverted.red.buttons .basic.button:hover, .ui.inverted.red.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important; box-shadow: 0px 0px 0px 2px #ff5144 inset !important; color: #FF695E !important; } @@ -3925,7 +3750,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.basic.buttons .button:focus, .ui.inverted.red.basic.buttons .button:focus, .ui.inverted.red.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #ff4335 inset !important; box-shadow: 0px 0px 0px 2px #ff4335 inset !important; color: #FF695E !important; } @@ -3933,7 +3757,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.basic.buttons .active.button, .ui.inverted.red.buttons .basic.active.button, .ui.inverted.red.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important; box-shadow: 0px 0px 0px 2px #ff5144 inset !important; color: #FF695E !important; } @@ -3941,7 +3764,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.red.basic.buttons .button:active, .ui.inverted.red.buttons .basic.button:active, .ui.inverted.red.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ff392b inset !important; box-shadow: 0px 0px 0px 2px #ff392b inset !important; color: #FF695E !important; } @@ -3957,7 +3779,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.teal.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -3995,7 +3816,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.teal.buttons .button, .ui.basic.teal.button { - -webkit-box-shadow: 0px 0px 0px 1px #00B5AD inset !important; box-shadow: 0px 0px 0px 1px #00B5AD inset !important; color: #00B5AD !important; } @@ -4003,7 +3823,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.teal.buttons .button:hover, .ui.basic.teal.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important; box-shadow: 0px 0px 0px 1px #009c95 inset !important; color: #009c95 !important; } @@ -4011,7 +3830,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.teal.buttons .button:focus, .ui.basic.teal.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #008c86 inset !important; box-shadow: 0px 0px 0px 1px #008c86 inset !important; color: #009c95 !important; } @@ -4019,14 +3837,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.teal.buttons .active.button, .ui.basic.teal.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important; box-shadow: 0px 0px 0px 1px #009c95 inset !important; color: #00827c !important; } .ui.basic.teal.buttons .button:active, .ui.basic.teal.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #00827c inset !important; box-shadow: 0px 0px 0px 1px #00827c inset !important; color: #00827c !important; } @@ -4040,7 +3856,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.buttons .button, .ui.inverted.teal.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; color: #6DFFFF; } @@ -4053,7 +3868,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.button.active, .ui.inverted.teal.buttons .button:active, .ui.inverted.teal.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: rgba(0, 0, 0, 0.6); } @@ -4084,7 +3898,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.buttons .basic.button, .ui.inverted.teal.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -4092,7 +3905,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.basic.buttons .button:hover, .ui.inverted.teal.buttons .basic.button:hover, .ui.inverted.teal.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important; box-shadow: 0px 0px 0px 2px #54ffff inset !important; color: #6DFFFF !important; } @@ -4100,7 +3912,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.basic.buttons .button:focus, .ui.inverted.teal.basic.buttons .button:focus, .ui.inverted.teal.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #44ffff inset !important; box-shadow: 0px 0px 0px 2px #44ffff inset !important; color: #6DFFFF !important; } @@ -4108,7 +3919,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.basic.buttons .active.button, .ui.inverted.teal.buttons .basic.active.button, .ui.inverted.teal.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important; box-shadow: 0px 0px 0px 2px #54ffff inset !important; color: #6DFFFF !important; } @@ -4116,7 +3926,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.teal.basic.buttons .button:active, .ui.inverted.teal.buttons .basic.button:active, .ui.inverted.teal.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #3affff inset !important; box-shadow: 0px 0px 0px 2px #3affff inset !important; color: #6DFFFF !important; } @@ -4132,7 +3941,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.olive.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -4170,7 +3978,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.olive.buttons .button, .ui.basic.olive.button { - -webkit-box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; color: #B5CC18 !important; } @@ -4178,7 +3985,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.olive.buttons .button:hover, .ui.basic.olive.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; color: #a7bd0d !important; } @@ -4186,7 +3992,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.olive.buttons .button:focus, .ui.basic.olive.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #a0b605 inset !important; box-shadow: 0px 0px 0px 1px #a0b605 inset !important; color: #a7bd0d !important; } @@ -4194,14 +3999,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.olive.buttons .active.button, .ui.basic.olive.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #aac109 inset !important; box-shadow: 0px 0px 0px 1px #aac109 inset !important; color: #8d9e13 !important; } .ui.basic.olive.buttons .button:active, .ui.basic.olive.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; color: #8d9e13 !important; } @@ -4215,7 +4018,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.buttons .button, .ui.inverted.olive.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D9E778 inset !important; box-shadow: 0px 0px 0px 2px #D9E778 inset !important; color: #D9E778; } @@ -4228,7 +4030,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.button.active, .ui.inverted.olive.buttons .button:active, .ui.inverted.olive.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: rgba(0, 0, 0, 0.6); } @@ -4259,7 +4060,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.buttons .basic.button, .ui.inverted.olive.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -4267,7 +4067,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.basic.buttons .button:hover, .ui.inverted.olive.buttons .basic.button:hover, .ui.inverted.olive.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; color: #D9E778 !important; } @@ -4275,7 +4074,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.basic.buttons .button:focus, .ui.inverted.olive.basic.buttons .button:focus, .ui.inverted.olive.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #daef47 inset !important; box-shadow: 0px 0px 0px 2px #daef47 inset !important; color: #D9E778 !important; } @@ -4283,7 +4081,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.basic.buttons .active.button, .ui.inverted.olive.buttons .basic.active.button, .ui.inverted.olive.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #daed59 inset !important; box-shadow: 0px 0px 0px 2px #daed59 inset !important; color: #D9E778 !important; } @@ -4291,7 +4088,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.olive.basic.buttons .button:active, .ui.inverted.olive.buttons .basic.button:active, .ui.inverted.olive.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #cddf4d inset !important; box-shadow: 0px 0px 0px 2px #cddf4d inset !important; color: #D9E778 !important; } @@ -4307,7 +4103,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.yellow.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -4345,7 +4140,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.yellow.buttons .button, .ui.basic.yellow.button { - -webkit-box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; color: #FBBD08 !important; } @@ -4353,7 +4147,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.yellow.buttons .button:hover, .ui.basic.yellow.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important; box-shadow: 0px 0px 0px 1px #eaae00 inset !important; color: #eaae00 !important; } @@ -4361,7 +4154,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.yellow.buttons .button:focus, .ui.basic.yellow.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #daa300 inset !important; box-shadow: 0px 0px 0px 1px #daa300 inset !important; color: #eaae00 !important; } @@ -4369,14 +4161,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.yellow.buttons .active.button, .ui.basic.yellow.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important; box-shadow: 0px 0px 0px 1px #eaae00 inset !important; color: #cd9903 !important; } .ui.basic.yellow.buttons .button:active, .ui.basic.yellow.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #cd9903 inset !important; box-shadow: 0px 0px 0px 1px #cd9903 inset !important; color: #cd9903 !important; } @@ -4390,7 +4180,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.buttons .button, .ui.inverted.yellow.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FFE21F inset !important; box-shadow: 0px 0px 0px 2px #FFE21F inset !important; color: #FFE21F; } @@ -4403,7 +4192,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.button.active, .ui.inverted.yellow.buttons .button:active, .ui.inverted.yellow.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: rgba(0, 0, 0, 0.6); } @@ -4434,7 +4222,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.buttons .basic.button, .ui.inverted.yellow.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -4442,7 +4229,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.basic.buttons .button:hover, .ui.inverted.yellow.buttons .basic.button:hover, .ui.inverted.yellow.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; color: #FFE21F !important; } @@ -4450,7 +4236,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.basic.buttons .button:focus, .ui.inverted.yellow.basic.buttons .button:focus, .ui.inverted.yellow.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #f5d500 inset !important; box-shadow: 0px 0px 0px 2px #f5d500 inset !important; color: #FFE21F !important; } @@ -4458,7 +4243,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.basic.buttons .active.button, .ui.inverted.yellow.buttons .basic.active.button, .ui.inverted.yellow.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; color: #FFE21F !important; } @@ -4466,7 +4250,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.yellow.basic.buttons .button:active, .ui.inverted.yellow.buttons .basic.button:active, .ui.inverted.yellow.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; color: #FFE21F !important; } @@ -4486,7 +4269,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.primary.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -4524,7 +4306,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.primary.buttons .button, .ui.basic.primary.button { - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important; box-shadow: 0px 0px 0px 1px #2185D0 inset !important; color: #2185D0 !important; } @@ -4532,7 +4313,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.primary.buttons .button:hover, .ui.basic.primary.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important; box-shadow: 0px 0px 0px 1px #1678c2 inset !important; color: #1678c2 !important; } @@ -4540,7 +4320,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.primary.buttons .button:focus, .ui.basic.primary.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important; box-shadow: 0px 0px 0px 1px #0d71bb inset !important; color: #1678c2 !important; } @@ -4548,14 +4327,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.primary.buttons .active.button, .ui.basic.primary.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important; box-shadow: 0px 0px 0px 1px #1279c6 inset !important; color: #1a69a4 !important; } .ui.basic.primary.buttons .button:active, .ui.basic.primary.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; color: #1a69a4 !important; } @@ -4569,7 +4346,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.buttons .button, .ui.inverted.primary.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #54C8FF inset !important; box-shadow: 0px 0px 0px 2px #54C8FF inset !important; color: #54C8FF; } @@ -4582,7 +4358,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.button.active, .ui.inverted.primary.buttons .button:active, .ui.inverted.primary.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -4613,7 +4388,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.buttons .basic.button, .ui.inverted.primary.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -4621,7 +4395,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.basic.buttons .button:hover, .ui.inverted.primary.buttons .basic.button:hover, .ui.inverted.primary.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; color: #54C8FF !important; } @@ -4629,7 +4402,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.basic.buttons .button:focus, .ui.inverted.primary.basic.buttons .button:focus, .ui.inverted.primary.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #2bbbff inset !important; box-shadow: 0px 0px 0px 2px #2bbbff inset !important; color: #54C8FF !important; } @@ -4637,7 +4409,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.basic.buttons .active.button, .ui.inverted.primary.buttons .basic.active.button, .ui.inverted.primary.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; color: #54C8FF !important; } @@ -4645,7 +4416,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.primary.basic.buttons .button:active, .ui.inverted.primary.buttons .basic.button:active, .ui.inverted.primary.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #21b8ff inset !important; box-shadow: 0px 0px 0px 2px #21b8ff inset !important; color: #54C8FF !important; } @@ -4665,7 +4435,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.secondary.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -4703,7 +4472,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.secondary.buttons .button, .ui.basic.secondary.button { - -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; color: #1B1C1D !important; } @@ -4711,7 +4479,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.secondary.buttons .button:hover, .ui.basic.secondary.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; box-shadow: 0px 0px 0px 1px #27292a inset !important; color: #27292a !important; } @@ -4719,7 +4486,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.secondary.buttons .button:focus, .ui.basic.secondary.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #2e3032 inset !important; box-shadow: 0px 0px 0px 1px #2e3032 inset !important; color: #27292a !important; } @@ -4727,14 +4493,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.secondary.buttons .active.button, .ui.basic.secondary.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; box-shadow: 0px 0px 0px 1px #27292a inset !important; color: #343637 !important; } .ui.basic.secondary.buttons .button:active, .ui.basic.secondary.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important; box-shadow: 0px 0px 0px 1px #343637 inset !important; color: #343637 !important; } @@ -4748,7 +4512,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.buttons .button, .ui.inverted.secondary.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #545454 inset !important; box-shadow: 0px 0px 0px 2px #545454 inset !important; color: #545454; } @@ -4761,7 +4524,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.button.active, .ui.inverted.secondary.buttons .button:active, .ui.inverted.secondary.button:active { - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -4792,7 +4554,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.buttons .basic.button, .ui.inverted.secondary.basic.button { background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; color: #FFFFFF !important; } @@ -4800,7 +4561,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.basic.buttons .button:hover, .ui.inverted.secondary.buttons .basic.button:hover, .ui.inverted.secondary.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #616161 inset !important; box-shadow: 0px 0px 0px 2px #616161 inset !important; color: #545454 !important; } @@ -4808,7 +4568,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.basic.buttons .button:focus, .ui.inverted.secondary.basic.buttons .button:focus, .ui.inverted.secondary.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #686868 inset !important; box-shadow: 0px 0px 0px 2px #686868 inset !important; color: #545454 !important; } @@ -4816,7 +4575,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.basic.buttons .active.button, .ui.inverted.secondary.buttons .basic.active.button, .ui.inverted.secondary.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #616161 inset !important; box-shadow: 0px 0px 0px 2px #616161 inset !important; color: #545454 !important; } @@ -4824,7 +4582,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.inverted.secondary.basic.buttons .button:active, .ui.inverted.secondary.buttons .basic.button:active, .ui.inverted.secondary.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #6e6e6e inset !important; box-shadow: 0px 0px 0px 2px #6e6e6e inset !important; color: #545454 !important; } @@ -4844,7 +4601,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.positive.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -4882,7 +4638,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.positive.buttons .button, .ui.basic.positive.button { - -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important; box-shadow: 0px 0px 0px 1px #21BA45 inset !important; color: #21BA45 !important; } @@ -4890,7 +4645,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.positive.buttons .button:hover, .ui.basic.positive.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important; box-shadow: 0px 0px 0px 1px #16ab39 inset !important; color: #16ab39 !important; } @@ -4898,7 +4652,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.positive.buttons .button:focus, .ui.basic.positive.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important; box-shadow: 0px 0px 0px 1px #0ea432 inset !important; color: #16ab39 !important; } @@ -4906,14 +4659,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.positive.buttons .active.button, .ui.basic.positive.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important; box-shadow: 0px 0px 0px 1px #13ae38 inset !important; color: #198f35 !important; } .ui.basic.positive.buttons .button:active, .ui.basic.positive.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important; box-shadow: 0px 0px 0px 1px #198f35 inset !important; color: #198f35 !important; } @@ -4937,7 +4688,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.negative.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -4975,7 +4725,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.negative.buttons .button, .ui.basic.negative.button { - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important; box-shadow: 0px 0px 0px 1px #DB2828 inset !important; color: #DB2828 !important; } @@ -4983,7 +4732,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.negative.buttons .button:hover, .ui.basic.negative.button:hover { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important; box-shadow: 0px 0px 0px 1px #d01919 inset !important; color: #d01919 !important; } @@ -4991,7 +4739,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.negative.buttons .button:focus, .ui.basic.negative.button:focus { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important; box-shadow: 0px 0px 0px 1px #ca1010 inset !important; color: #d01919 !important; } @@ -4999,14 +4746,12 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.basic.negative.buttons .active.button, .ui.basic.negative.active.button { background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important; box-shadow: 0px 0px 0px 1px #d41515 inset !important; color: #b21e1e !important; } .ui.basic.negative.buttons .button:active, .ui.basic.negative.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important; box-shadow: 0px 0px 0px 1px #b21e1e inset !important; color: #b21e1e !important; } @@ -5020,12 +4765,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { *******************************/ .ui.buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; font-size: 0em; vertical-align: baseline; @@ -5033,7 +4773,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { } .ui.buttons:not(.basic):not(.inverted) { - -webkit-box-shadow: none; box-shadow: none; } @@ -5050,8 +4789,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { /* Standard Group */ .ui.buttons .button { - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; flex: 1 0 auto; margin: 0em; border-radius: 0em; @@ -5060,7 +4797,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { .ui.buttons > .ui.button:not(.basic):not(.inverted), .ui.buttons:not(.basic):not(.inverted) > .button { - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; } @@ -5079,12 +4815,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { /* Vertical Style */ .ui.vertical.buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } @@ -5093,7 +4824,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { float: none; width: 100%; margin: 0px 0px 0px 0px; - -webkit-box-shadow: none; box-shadow: none; border-radius: 0em; } @@ -5121,7 +4851,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Container + * # Semantic UI 2.5.0 - Container * http://github.com/semantic-org/semantic-ui/ * * @@ -5282,7 +5012,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Divider + * # Semantic UI 2.5.0 - Divider * http://github.com/semantic-org/semantic-ui/ * * @@ -5376,7 +5106,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { height: 50%; line-height: 0em; text-align: center; - -webkit-transform: translateX(-50%); transform: translateX(-50%); } @@ -5416,7 +5145,6 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { position: static; top: 0; left: 0; - -webkit-transform: none; transform: none; } @@ -5549,7 +5277,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Flag + * # Semantic UI 2.5.0 - Flag * http://github.com/semantic-org/semantic-ui/ * * @@ -6826,7 +6554,7 @@ i.flag.zimbabwe:before { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Header + * # Semantic UI 2.5.0 - Header * http://github.com/semantic-org/semantic-ui/ * * @@ -6845,7 +6573,7 @@ i.flag.zimbabwe:before { border: none; margin: calc(2rem - 0.14285714em ) 0em 1rem; padding: 0em 0em; - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-weight: bold; line-height: 1.28571429em; text-transform: none; @@ -7161,19 +6889,13 @@ h5.ui.header .sub.header { } .ui.inverted.attached.header { - background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - -webkit-box-shadow: none; box-shadow: none; border-color: transparent; } .ui.inverted.block.header { - background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - -webkit-box-shadow: none; box-shadow: none; } @@ -7553,7 +7275,6 @@ a.ui.inverted.grey.header:hover { .ui.block.header { background: #F3F4F5; padding: 0.78571429rem 1rem; - -webkit-box-shadow: none; box-shadow: none; border: 1px solid #D4D4D5; border-radius: 0.28571429rem; @@ -7588,7 +7309,6 @@ a.ui.inverted.grey.header:hover { padding: 0.78571429rem 1rem; margin-left: -1px; margin-right: -1px; - -webkit-box-shadow: none; box-shadow: none; border: 1px solid #D4D4D5; } @@ -7653,7 +7373,7 @@ a.ui.inverted.grey.header:hover { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Icon + * # Semantic UI 2.5.0 - Icon * http://github.com/semantic-org/semantic-ui/ * * @@ -7711,30 +7431,29 @@ i.icon:before { i.icon.loading { height: 1em; line-height: 1; +} + +i.icon.loading { -webkit-animation: icon-loading 2s linear infinite; animation: icon-loading 2s linear infinite; } @-webkit-keyframes icon-loading { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes icon-loading { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @@ -7780,7 +7499,6 @@ i.link.icon, i.link.icons { cursor: pointer; opacity: 0.8; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -7797,7 +7515,6 @@ i.circular.icon { border-radius: 500em !important; line-height: 1 !important; padding: 0.5em 0em !important; - -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; width: 2em !important; height: 2em !important; @@ -7805,7 +7522,6 @@ i.circular.icon { i.circular.inverted.icon { border: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -7815,12 +7531,10 @@ i.circular.inverted.icon { i.flipped.icon, i.horizontally.flipped.icon { - -webkit-transform: scale(-1, 1); transform: scale(-1, 1); } i.vertically.flipped.icon { - -webkit-transform: scale(1, -1); transform: scale(1, -1); } @@ -7831,13 +7545,11 @@ i.vertically.flipped.icon { i.rotated.icon, i.right.rotated.icon, i.clockwise.rotated.icon { - -webkit-transform: rotate(90deg); transform: rotate(90deg); } i.left.rotated.icon, i.counterclockwise.rotated.icon { - -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } @@ -7851,13 +7563,11 @@ i.bordered.icon { width: 2em; height: 2em; padding: 0.5em 0em !important; - -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; } i.bordered.inverted.icon { border: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -8158,7 +7868,6 @@ i.icons .icon { position: absolute; top: 50%; left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); margin: 0em; margin: 0; @@ -8169,7 +7878,6 @@ i.icons .icon:first-child { width: auto; height: auto; vertical-align: top; - -webkit-transform: none; transform: none; margin-right: 0.25rem; } @@ -8181,7 +7889,6 @@ i.icons .corner.icon { left: auto; right: 0; bottom: 0; - -webkit-transform: none; transform: none; font-size: 0.45em; text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF; @@ -8747,7 +8454,7 @@ i.icon.buysellads:before { content: "\f20d"; } -i.icon.calcuSource Sans Pror:before { +i.icon.calculator:before { content: "\f1ec"; } @@ -13805,7 +13512,7 @@ i.icon.youtube.square { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Image + * # Semantic UI 2.5.0 - Image * http://github.com/semantic-org/semantic-ui/ * * @@ -14127,7 +13834,7 @@ img.ui.bordered.image { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Input + * # Semantic UI 2.5.0 - Input * http://github.com/semantic-org/semantic-ui/ * * @@ -14148,8 +13855,6 @@ img.ui.bordered.image { position: relative; font-weight: normal; font-style: normal; - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; color: rgba(0, 0, 0, 0.87); } @@ -14157,8 +13862,6 @@ img.ui.bordered.image { .ui.input > input { margin: 0em; max-width: 100%; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; flex: 1 0 auto; outline: none; -webkit-tap-highlight-color: rgba(255, 255, 255, 0); @@ -14170,11 +13873,7 @@ img.ui.bordered.image { border: 1px solid rgba(34, 36, 38, 0.15); color: rgba(0, 0, 0, 0.87); border-radius: 0.28571429rem; - -webkit-transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease; transition: box-shadow 0.1s ease, border-color 0.1s ease; - transition: box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - -webkit-box-shadow: none; box-shadow: none; } @@ -14223,7 +13922,6 @@ img.ui.bordered.image { border-color: rgba(0, 0, 0, 0.3); background: #FAFAFA; color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; box-shadow: none; } @@ -14259,7 +13957,6 @@ img.ui.bordered.image { border-color: #767676 transparent transparent; border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; } @@ -14272,7 +13969,6 @@ img.ui.bordered.image { border-color: #85B7D9; background: #FFFFFF; color: rgba(0, 0, 0, 0.8); - -webkit-box-shadow: none; box-shadow: none; } @@ -14299,7 +13995,6 @@ img.ui.bordered.image { background-color: #FFF6F6; border-color: #E0B4B4; color: #9F3A38; - -webkit-box-shadow: none; box-shadow: none; } @@ -14343,7 +14038,6 @@ img.ui.bordered.image { border-color: transparent !important; background-color: transparent !important; padding: 0em !important; - -webkit-box-shadow: none !important; box-shadow: none !important; border-radius: 0px !important; } @@ -14402,7 +14096,6 @@ img.ui.bordered.image { width: 2.67142857em; opacity: 0.5; border-radius: 0em 0.28571429rem 0.28571429rem 0em; - -webkit-transition: opacity 0.3s ease; transition: opacity 0.3s ease; } @@ -14464,8 +14157,6 @@ img.ui.bordered.image { /* Adjacent Label */ .ui.labeled.input > .label { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; margin: 0; font-size: 1em; @@ -14565,14 +14256,8 @@ img.ui.bordered.image { .ui.action.input > .button, .ui.action.input > .buttons { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; } @@ -14650,8 +14335,6 @@ img.ui.bordered.image { ---------------------*/ .ui.fluid.input { - display: -webkit-box; - display: -ms-flexbox; display: flex; } @@ -14699,7 +14382,7 @@ img.ui.bordered.image { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Label + * # Semantic UI 2.5.0 - Label * http://github.com/semantic-org/semantic-ui/ * * @@ -14725,7 +14408,6 @@ img.ui.bordered.image { font-weight: bold; border: 0px solid transparent; border-radius: 0.28571429rem; - -webkit-transition: background 0.1s ease; transition: background 0.1s ease; } @@ -14749,7 +14431,6 @@ a.ui.label { cursor: pointer; color: inherit; opacity: 0.5; - -webkit-transition: 0.1s opacity ease; transition: 0.1s opacity ease; } @@ -14795,7 +14476,6 @@ a.ui.label { margin-left: 0.5em; font-size: 0.92857143em; opacity: 0.5; - -webkit-transition: background 0.1s ease; transition: background 0.1s ease; } @@ -14865,7 +14545,6 @@ a.ui.label { background: #E8E8E8; padding: 0.5833em 0.833em 0.5833em 0.5em; border-radius: 0.28571429rem; - -webkit-box-shadow: none; box-shadow: none; } @@ -14895,14 +14574,12 @@ a.ui.label { padding-left: 1.5em; padding-right: 1.5em; border-radius: 0em 0.28571429rem 0.28571429rem 0em; - -webkit-transition: none; transition: none; } .ui.tag.labels .label:before, .ui.tag.label:before { position: absolute; - -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg); transform: translateY(-50%) translateX(50%) rotate(-45deg); top: 50%; right: 100%; @@ -14911,7 +14588,6 @@ a.ui.label { background-image: none; width: 1.56em; height: 1.56em; - -webkit-transition: none; transition: none; } @@ -14925,7 +14601,6 @@ a.ui.label { background-color: #FFFFFF !important; width: 0.5em; height: 0.5em; - -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); border-radius: 500rem; } @@ -14945,7 +14620,6 @@ a.ui.label { width: 4em; height: 4em; z-index: 1; - -webkit-transition: border-color 0.1s ease; transition: border-color 0.1s ease; } @@ -14969,7 +14643,6 @@ a.ui.label { border-bottom: 4em solid transparent; border-left: 0em solid transparent; border-right-color: inherit; - -webkit-transition: border-color 0.1s ease; transition: border-color 0.1s ease; } @@ -15045,23 +14718,22 @@ a.ui.label { /* Positioning */ .ui.ribbon.label { - left: calc( -1rem - 1.2em ); + left: calc(-1rem - 1.2em); margin-right: -1.2em; - padding-left: calc( 1rem + 1.2em ); + padding-left: calc(1rem + 1.2em); padding-right: 1.2em; } .ui[class*="right ribbon"].label { - left: calc(100% + 1rem + 1.2em ); + left: calc(100% + 1rem + 1.2em); padding-left: 1.2em; - padding-right: calc( 1rem + 1.2em ); + padding-right: calc(1rem + 1.2em); } /* Right Ribbon */ .ui[class*="right ribbon"].label { text-align: left; - -webkit-transform: translateX(-100%); transform: translateX(-100%); border-radius: 0.28571429rem 0em 0em 0.28571429rem; } @@ -15085,23 +14757,23 @@ a.ui.label { .ui.card .image > .ui.ribbon.label, .ui.image > .ui.ribbon.label { - left: calc( 0.05rem - 1.2em ); + left: calc(--0.05rem - 1.2em); } .ui.card .image > .ui[class*="right ribbon"].label, .ui.image > .ui[class*="right ribbon"].label { - left: calc(100% + -0.05rem + 1.2em ); + left: calc(100% + -0.05rem + 1.2em); padding-left: 0.833em; } /* Inside Table */ .ui.table td > .ui.ribbon.label { - left: calc( -0.78571429em - 1.2em ); + left: calc(-0.78571429em - 1.2em); } .ui.table td > .ui[class*="right ribbon"].label { - left: calc(100% + 0.78571429em + 1.2em ); + left: calc(100% + 0.78571429em + 1.2em); padding-left: 0.833em; } @@ -15852,7 +15524,6 @@ a.ui.basic.black.label:hover { background: none #FFFFFF; border: 1px solid rgba(34, 36, 38, 0.15); color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; box-shadow: none; } @@ -15862,9 +15533,7 @@ a.ui.basic.label:hover { text-decoration: none; background: none #FFFFFF; color: #1e70bf; - -webkit-box-shadow: 1px solid rgba(34, 36, 38, 0.15); box-shadow: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; box-shadow: none; } @@ -15881,7 +15550,6 @@ a.ui.basic.label:hover { .ui.label.fluid, .ui.fluid.labels > .label { width: 100%; - -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -15955,13 +15623,11 @@ a.ui.basic.label:hover { .ui.pointing.label:before { position: absolute; content: ''; - -webkit-transform: rotate(45deg); transform: rotate(45deg); background-image: none; z-index: 2; width: 0.6666em; height: 0.6666em; - -webkit-transition: background 0.1s ease; transition: background 0.1s ease; } @@ -15975,7 +15641,6 @@ a.ui.basic.label:hover { .ui.pointing.label:before, .ui[class*="pointing above"].label:before { border-width: 1px 0px 0px 1px; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); transform: translateX(-50%) translateY(-50%) rotate(45deg); top: 0%; left: 50%; @@ -15994,7 +15659,6 @@ a.ui.basic.label:hover { border-width: 0px 1px 1px 0px; top: auto; right: auto; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); transform: translateX(-50%) translateY(-50%) rotate(45deg); top: 100%; left: 50%; @@ -16009,7 +15673,6 @@ a.ui.basic.label:hover { .ui[class*="left pointing"].label:before { border-width: 0px 0px 1px 1px; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); transform: translateX(-50%) translateY(-50%) rotate(45deg); bottom: auto; right: auto; @@ -16026,7 +15689,6 @@ a.ui.basic.label:hover { .ui[class*="right pointing"].label:before { border-width: 1px 1px 0px 0px; - -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg); transform: translateX(50%) translateY(-50%) rotate(45deg); top: 50%; right: 0%; @@ -16130,7 +15792,7 @@ a.ui.basic.label:hover { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - List + * # Semantic UI 2.5.0 - List * http://github.com/semantic-org/semantic-ui/ * * @@ -16236,7 +15898,6 @@ ol.ui.list ol li, padding-top: 0em; padding-right: 0.28571429em; vertical-align: top; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -16577,7 +16238,6 @@ ol.ui.list ol li, .ui.link.list a.item, .ui.link.list .item a:not(.ui) { color: rgba(0, 0, 0, 0.4); - -webkit-transition: 0.1s color ease; transition: 0.1s color ease; } @@ -16631,7 +16291,6 @@ ol.ui.list ol li, margin: 0em; color: rgba(0, 0, 0, 0.4); border-radius: 0.5em; - -webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; } @@ -16698,7 +16357,6 @@ ol.ui.list ol li, --------------------*/ .ui.animated.list > .item { - -webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; } @@ -17209,7 +16867,7 @@ ol.ui.horizontal.list li:before, User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Loader + * # Semantic UI 2.5.0 - Loader * http://github.com/semantic-org/semantic-ui/ * * @@ -17232,7 +16890,6 @@ ol.ui.horizontal.list li:before, margin: 0px; text-align: center; z-index: 1000; - -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } @@ -17266,7 +16923,6 @@ ol.ui.horizontal.list li:before, border-color: #767676 transparent transparent; border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; } @@ -17274,24 +16930,20 @@ ol.ui.horizontal.list li:before, @-webkit-keyframes loader { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes loader { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @@ -17561,7 +17213,6 @@ ol.ui.horizontal.list li:before, margin: 0em; left: 0em; top: 0em; - -webkit-transform: none; transform: none; } @@ -17587,7 +17238,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Loader + * # Semantic UI 2.5.0 - Loader * http://github.com/semantic-org/semantic-ui/ * * @@ -17608,8 +17259,6 @@ ol.ui.horizontal.list li:before, -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; background-color: #FFFFFF; - 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))); - 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%); 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%); background-size: 1200px 100%; max-width: 30rem; @@ -17813,8 +17462,6 @@ ol.ui.horizontal.list li:before, /* Inverted Content Loader */ .ui.inverted.placeholder { - 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))); - 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%); 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%); } @@ -17866,7 +17513,7 @@ ol.ui.horizontal.list li:before, max-width: none; } /*! - * # Semantic UI 2.4.0 - Rail + * # Semantic UI 2.5.0 - Rail * http://github.com/semantic-org/semantic-ui/ * * @@ -18028,7 +17675,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Reveal + * # Semantic UI 2.5.0 - Reveal * http://github.com/semantic-org/semantic-ui/ * * @@ -18052,7 +17699,6 @@ ol.ui.horizontal.list li:before, top: 0em !important; left: 0em !important; z-index: 3 !important; - -webkit-transition: all 0.5s ease 0.1s; transition: all 0.5s ease 0.1s; } @@ -18088,10 +17734,7 @@ ol.ui.horizontal.list li:before, white-space: normal; float: left; margin: 0em; - -webkit-transition: -webkit-transform 0.5s ease 0.1s; - transition: -webkit-transform 0.5s ease 0.1s; transition: transform 0.5s ease 0.1s; - transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s; } .ui.slide.reveal > .visible.content { @@ -18102,75 +17745,62 @@ ol.ui.horizontal.list li:before, position: absolute !important; left: 0% !important; width: 100% !important; - -webkit-transform: translateX(100%) !important; transform: translateX(100%) !important; } .ui.slide.active.reveal > .visible.content, .ui.slide.reveal:hover > .visible.content { - -webkit-transform: translateX(-100%) !important; transform: translateX(-100%) !important; } .ui.slide.active.reveal > .hidden.content, .ui.slide.reveal:hover > .hidden.content { - -webkit-transform: translateX(0%) !important; transform: translateX(0%) !important; } .ui.slide.right.reveal > .visible.content { - -webkit-transform: translateX(0%) !important; transform: translateX(0%) !important; } .ui.slide.right.reveal > .hidden.content { - -webkit-transform: translateX(-100%) !important; transform: translateX(-100%) !important; } .ui.slide.right.active.reveal > .visible.content, .ui.slide.right.reveal:hover > .visible.content { - -webkit-transform: translateX(100%) !important; transform: translateX(100%) !important; } .ui.slide.right.active.reveal > .hidden.content, .ui.slide.right.reveal:hover > .hidden.content { - -webkit-transform: translateX(0%) !important; transform: translateX(0%) !important; } .ui.slide.up.reveal > .hidden.content { - -webkit-transform: translateY(100%) !important; transform: translateY(100%) !important; } .ui.slide.up.active.reveal > .visible.content, .ui.slide.up.reveal:hover > .visible.content { - -webkit-transform: translateY(-100%) !important; transform: translateY(-100%) !important; } .ui.slide.up.active.reveal > .hidden.content, .ui.slide.up.reveal:hover > .hidden.content { - -webkit-transform: translateY(0%) !important; transform: translateY(0%) !important; } .ui.slide.down.reveal > .hidden.content { - -webkit-transform: translateY(-100%) !important; transform: translateY(-100%) !important; } .ui.slide.down.active.reveal > .visible.content, .ui.slide.down.reveal:hover > .visible.content { - -webkit-transform: translateY(100%) !important; transform: translateY(100%) !important; } .ui.slide.down.active.reveal > .hidden.content, .ui.slide.down.reveal:hover > .hidden.content { - -webkit-transform: translateY(0%) !important; transform: translateY(0%) !important; } @@ -18202,10 +17832,7 @@ ol.ui.horizontal.list li:before, float: left; white-space: normal; margin: 0em; - -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; - transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; - 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; } .ui.move.reveal > .visible.content { @@ -18220,25 +17847,21 @@ ol.ui.horizontal.list li:before, .ui.move.active.reveal > .visible.content, .ui.move.reveal:hover > .visible.content { - -webkit-transform: translateX(-100%) !important; transform: translateX(-100%) !important; } .ui.move.right.active.reveal > .visible.content, .ui.move.right.reveal:hover > .visible.content { - -webkit-transform: translateX(100%) !important; transform: translateX(100%) !important; } .ui.move.up.active.reveal > .visible.content, .ui.move.up.reveal:hover > .visible.content { - -webkit-transform: translateY(-100%) !important; transform: translateY(-100%) !important; } .ui.move.down.active.reveal > .visible.content, .ui.move.down.reveal:hover > .visible.content { - -webkit-transform: translateY(100%) !important; transform: translateY(100%) !important; } @@ -18247,15 +17870,12 @@ ol.ui.horizontal.list li:before, ---------------*/ .ui.rotate.reveal > .visible.content { - -webkit-transition-duration: 0.5s; transition-duration: 0.5s; - -webkit-transform: rotate(0deg); transform: rotate(0deg); } .ui.rotate.reveal > .visible.content, .ui.rotate.right.reveal > .visible.content { - -webkit-transform-origin: bottom right; transform-origin: bottom right; } @@ -18263,18 +17883,15 @@ ol.ui.horizontal.list li:before, .ui.rotate.reveal:hover > .visible.content, .ui.rotate.right.active.reveal > .visible.content, .ui.rotate.right.reveal:hover > .visible.content { - -webkit-transform: rotate(110deg); transform: rotate(110deg); } .ui.rotate.left.reveal > .visible.content { - -webkit-transform-origin: bottom left; transform-origin: bottom left; } .ui.rotate.left.active.reveal > .visible.content, .ui.rotate.left.reveal:hover > .visible.content { - -webkit-transform: rotate(-110deg); transform: rotate(-110deg); } @@ -18290,7 +17907,6 @@ ol.ui.horizontal.list li:before, left: 0 !important; right: auto !important; bottom: auto !important; - -webkit-transform: none !important; transform: none !important; } @@ -18323,7 +17939,6 @@ ol.ui.horizontal.list li:before, ---------------*/ .ui.instant.reveal > .content { - -webkit-transition-delay: 0s !important; transition-delay: 0s !important; } @@ -18343,7 +17958,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Segment + * # Semantic UI 2.5.0 - Segment * http://github.com/semantic-org/semantic-ui/ * * @@ -18359,7 +17974,6 @@ ol.ui.horizontal.list li:before, .ui.segment { position: relative; background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); margin: 1rem 0em; padding: 1em 1em; @@ -18383,7 +17997,6 @@ ol.ui.horizontal.list li:before, padding-right: 0em; background: none transparent; border-radius: 0px; - -webkit-box-shadow: none; box-shadow: none; border: none; border-bottom: 1px solid rgba(34, 36, 38, 0.15); @@ -18444,7 +18057,6 @@ ol.ui.horizontal.list li:before, .ui.basic.table.segment { background: #FFFFFF; border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); } @@ -18461,18 +18073,9 @@ ol.ui.horizontal.list li:before, --------------------*/ .ui.placeholder.segment { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; - -webkit-box-align: stretch; - -ms-flex-align: stretch; align-items: stretch; max-width: initial; -webkit-animation: none; @@ -18482,7 +18085,6 @@ ol.ui.horizontal.list li:before, min-height: 18rem; background: #F9FAFB; border-color: rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset; box-shadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset; } @@ -18510,7 +18112,6 @@ ol.ui.horizontal.list li:before, } .ui.placeholder.segment > .inline { - -ms-flex-item-align: center; align-self: center; } @@ -18531,7 +18132,6 @@ ol.ui.horizontal.list li:before, .ui.piled.segments, .ui.piled.segment { margin: 3em 0em; - -webkit-box-shadow: ''; box-shadow: ''; z-index: auto; } @@ -18557,13 +18157,11 @@ ol.ui.horizontal.list li:before, position: absolute; width: 100%; border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: ''; box-shadow: ''; } .ui.piled.segments:before, .ui.piled.segment:before { - -webkit-transform: rotate(-1.2deg); transform: rotate(-1.2deg); top: 0; z-index: -2; @@ -18571,7 +18169,6 @@ ol.ui.horizontal.list li:before, .ui.piled.segments:after, .ui.piled.segment:after { - -webkit-transform: rotate(1.2deg); transform: rotate(1.2deg); top: 0; z-index: -1; @@ -18674,16 +18271,12 @@ ol.ui.horizontal.list li:before, /* Compact Group */ .ui.compact.segments { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; } .ui.compact.segments .segment, .ui.segments .compact.segment { display: block; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; flex: 0 1 auto; } @@ -18705,7 +18298,6 @@ ol.ui.horizontal.list li:before, .ui.raised.segments, .ui.raised.segment { - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); } @@ -18716,14 +18308,10 @@ ol.ui.horizontal.list li:before, /* Group */ .ui.segments { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; position: relative; margin: 1rem 0em; border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); border-radius: 0.28571429rem; } @@ -18744,7 +18332,6 @@ ol.ui.horizontal.list li:before, border-radius: 0px; margin: 0em; width: auto; - -webkit-box-shadow: none; box-shadow: none; border: none; border-top: 1px solid rgba(34, 36, 38, 0.15); @@ -18766,7 +18353,6 @@ ol.ui.horizontal.list li:before, bottom: 0px; margin-top: 0em; margin-bottom: 0em; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; border-radius: 0em 0em 0.28571429rem 0.28571429rem; } @@ -18795,18 +18381,12 @@ ol.ui.horizontal.list li:before, /* Horizontal Group */ .ui.horizontal.segments { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; background-color: transparent; border-radius: 0px; padding: 0em; background-color: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); margin: 1rem 0em; border-radius: 0.28571429rem; @@ -18820,7 +18400,6 @@ ol.ui.horizontal.list li:before, background-color: transparent; border-radius: 0px; border: none; - -webkit-box-shadow: none; box-shadow: none; border-top: 1px solid rgba(34, 36, 38, 0.15); } @@ -18828,7 +18407,6 @@ ol.ui.horizontal.list li:before, /* Horizontal Segment */ .ui.horizontal.segments > .segment { - -webkit-box-flex: 1; flex: 1 1 auto; -ms-flex: 1 1 0px; /* Solves #2550 MS Flex */ @@ -18837,7 +18415,6 @@ ol.ui.horizontal.list li:before, background-color: transparent; border-radius: 0px; border: none; - -webkit-box-shadow: none; box-shadow: none; border-left: 1px solid rgba(34, 36, 38, 0.15); } @@ -18875,7 +18452,6 @@ ol.ui.horizontal.list li:before, pointer-events: none; text-shadow: none !important; color: transparent !important; - -webkit-transition: all 0s linear; transition: all 0s linear; } @@ -18907,7 +18483,6 @@ ol.ui.horizontal.list li:before, border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; visibility: visible; z-index: 101; @@ -18915,24 +18490,20 @@ ol.ui.horizontal.list li:before, @-webkit-keyframes segment-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes segment-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @@ -18947,7 +18518,6 @@ ol.ui.horizontal.list li:before, .ui.basic.segment { background: none transparent; - -webkit-box-shadow: none; box-shadow: none; border: none; border-radius: 0px; @@ -19149,7 +18719,6 @@ ol.ui.horizontal.list li:before, .ui.inverted.segment { border: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -19187,8 +18756,6 @@ ol.ui.horizontal.list li:before, } .ui.secondary.inverted.segment { - background: #4c4f52 -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2))); - background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); color: rgba(255, 255, 255, 0.8); } @@ -19201,8 +18768,6 @@ ol.ui.horizontal.list li:before, } .ui.tertiary.inverted.segment { - background: #717579 -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.35)), to(rgba(255, 255, 255, 0.35))); - background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%); background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%); color: rgba(255, 255, 255, 0.8); } @@ -19218,9 +18783,8 @@ ol.ui.horizontal.list li:before, bottom: 0px; border-radius: 0px; margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - -webkit-box-shadow: none; + width: calc(100% - (-1px * 2)); + max-width: calc(100% - (-1px * 2)); box-shadow: none; border: 1px solid #D4D4D5; } @@ -19250,7 +18814,6 @@ ol.ui.horizontal.list li:before, margin-top: 0em; top: 0px; margin-bottom: 1rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; border-radius: 0em 0em 0.28571429rem 0.28571429rem; } @@ -19311,7 +18874,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Step + * # Semantic UI 2.5.0 - Step * http://github.com/semantic-org/semantic-ui/ * * @@ -19325,19 +18888,11 @@ ol.ui.horizontal.list li:before, *******************************/ .ui.steps { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; - -webkit-box-align: stretch; - -ms-flex-align: stretch; align-items: stretch; margin: 1em 0em; background: ''; - -webkit-box-shadow: none; box-shadow: none; line-height: 1.14285714em; border-radius: 0.28571429rem; @@ -19362,38 +18917,22 @@ ol.ui.horizontal.list li:before, .ui.steps .step { position: relative; - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; flex: 1 0 auto; - -ms-flex-wrap: wrap; flex-wrap: wrap; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; vertical-align: middle; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; margin: 0em 0em; padding: 1.14285714em 2em; background: #FFFFFF; color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; box-shadow: none; border-radius: 0em; border: none; border-right: 1px solid rgba(34, 36, 38, 0.15); - -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; } /* Arrow */ @@ -19412,11 +18951,7 @@ ol.ui.horizontal.list li:before, border-style: solid; border-color: rgba(34, 36, 38, 0.15); border-width: 0px 1px 1px 0px; - -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; - -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg); transform: translateY(-50%) translateX(50%) rotate(-45deg); } @@ -19487,16 +19022,11 @@ ol.ui.horizontal.list li:before, .ui.steps .step > .icon, .ui.steps .step > .icon ~ .content { display: block; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; flex: 0 1 auto; - -ms-flex-item-align: middle; align-self: middle; } .ui.steps .step > .icon ~ .content { - -webkit-box-flex: 1 0 auto; - -ms-flex-positive: 1 0 auto; flex-grow: 1 0 auto; } @@ -19530,7 +19060,6 @@ ol.ui.horizontal.list li:before, position: static; text-align: center; content: counters(ordered, "."); - -ms-flex-item-align: middle; align-self: middle; margin-right: 1rem; font-size: 2.5em; @@ -19541,7 +19070,6 @@ ol.ui.horizontal.list li:before, .ui.ordered.steps .step > * { display: block; - -ms-flex-item-align: middle; align-self: middle; } @@ -19550,19 +19078,12 @@ ol.ui.horizontal.list li:before, ---------------*/ .ui.vertical.steps { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; overflow: visible; } .ui.vertical.steps .step { - -webkit-box-pack: start; - -ms-flex-pack: start; justify-content: flex-start; border-radius: 0em; padding: 1.14285714em 2em; @@ -19620,21 +19141,13 @@ ol.ui.horizontal.list li:before, @media only screen and (max-width: 767px) { .ui.steps:not(.unstackable) { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; overflow: visible; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } .ui.steps:not(.unstackable) .step { width: 100% !important; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; border-radius: 0em; padding: 1.14285714em 2em; @@ -19779,22 +19292,14 @@ ol.ui.horizontal.list li:before, @media only screen and (max-width: 991px) { .ui[class*="tablet stackable"].steps { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; overflow: visible; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } /* Steps */ .ui[class*="tablet stackable"].steps .step { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; border-radius: 0em; padding: 1.14285714em 2em; @@ -19836,8 +19341,6 @@ ol.ui.horizontal.list li:before, /* Fluid */ .ui.fluid.steps { - display: -webkit-box; - display: -ms-flexbox; display: flex; width: 100%; } @@ -19849,9 +19352,9 @@ ol.ui.horizontal.list li:before, /* Top */ .ui.attached.steps { - width: calc(100% + 2px ) !important; + width: calc(100% + (--1px * 2)) !important; margin: 0em -1px 0; - max-width: calc(100% + 2px ); + max-width: calc(100% + (--1px * 2)); border-radius: 0.28571429rem 0.28571429rem 0em 0em; } @@ -19901,7 +19404,6 @@ ol.ui.horizontal.list li:before, .ui.six.steps > .step, .ui.seven.steps > .step, .ui.eight.steps > .step { - -ms-flex-wrap: nowrap; flex-wrap: nowrap; } @@ -19934,7 +19436,7 @@ ol.ui.horizontal.list li:before, } .ui.eight.steps > .step { - width: 12.500%; + width: 12.5%; } /*------------------- @@ -19987,7 +19489,7 @@ ol.ui.horizontal.list li:before, @font-face { font-family: 'Step'; - src: url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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) format('woff'); + src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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) format('woff'); } .ui.steps .step.completed > .icon:before, @@ -20001,7 +19503,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Breadcrumb + * # Semantic UI 2.5.0 - Breadcrumb * http://github.com/semantic-org/semantic-ui/ * * @@ -20132,7 +19634,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Form + * # Semantic UI 2.5.0 - Form * http://github.com/semantic-org/semantic-ui/ * * @@ -20246,9 +19748,7 @@ ol.ui.horizontal.list li:before, border: 1px solid rgba(34, 36, 38, 0.15); color: rgba(0, 0, 0, 0.87); border-radius: 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-transition: color 0.1s ease, border-color 0.1s ease; transition: color 0.1s ease, border-color 0.1s ease; } @@ -20264,9 +19764,7 @@ ol.ui.horizontal.list li:before, outline: none; color: rgba(0, 0, 0, 0.87); border-radius: 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-transition: color 0.1s ease, border-color 0.1s ease; transition: color 0.1s ease, border-color 0.1s ease; font-size: 1em; line-height: 1.2857; @@ -20303,11 +19801,9 @@ ol.ui.horizontal.list li:before, background: #FFFFFF; border: 1px solid rgba(34, 36, 38, 0.15); border-radius: 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; box-shadow: 0em 0em 0em 0em transparent inset; padding: 0.62em 1em; color: rgba(0, 0, 0, 0.87); - -webkit-transition: color 0.1s ease, border-color 0.1s ease; transition: color 0.1s ease, border-color 0.1s ease; } @@ -20376,8 +19872,6 @@ ol.ui.horizontal.list li:before, .ui.form .three.fields .ui.input input, .ui.form .two.fields .ui.input input, .ui.form .wide.field .ui.input input { - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; flex: 1 0 auto; width: 0px; } @@ -20433,7 +19927,6 @@ ol.ui.horizontal.list li:before, ---------------------*/ .ui.form .field.field input:-webkit-autofill { - -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; border-color: #E5DFA1 !important; } @@ -20441,7 +19934,6 @@ ol.ui.horizontal.list li:before, /* Focus */ .ui.form .field.field input:-webkit-autofill:focus { - -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; border-color: #D5C315 !important; } @@ -20449,7 +19941,6 @@ ol.ui.horizontal.list li:before, /* Error */ .ui.form .error.error input:-webkit-autofill { - -webkit-box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; border-color: #E0B4B4 !important; } @@ -20530,7 +20021,6 @@ ol.ui.horizontal.list li:before, border-color: #85B7D9; border-radius: 0.28571429rem; background: #FFFFFF; - -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; } @@ -20539,7 +20029,6 @@ ol.ui.horizontal.list li:before, border-color: #85B7D9; border-radius: 0.28571429rem; background: #FFFFFF; - -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; -webkit-appearance: none; } @@ -20559,8 +20048,6 @@ ol.ui.horizontal.list li:before, } .ui.form.success .icon.success.message:not(:empty) { - display: -webkit-box; - display: -ms-flexbox; display: flex; } @@ -20579,8 +20066,6 @@ ol.ui.horizontal.list li:before, } .ui.form.warning .icon.warning.message:not(:empty) { - display: -webkit-box; - display: -ms-flexbox; display: flex; } @@ -20599,8 +20084,6 @@ ol.ui.horizontal.list li:before, } .ui.form.error .icon.error.message:not(:empty) { - display: -webkit-box; - display: -ms-flexbox; display: flex; } @@ -20651,7 +20134,6 @@ ol.ui.horizontal.list li:before, border-color: #E0B4B4; color: #9F3A38; border-radius: ''; - -webkit-box-shadow: none; box-shadow: none; } @@ -20673,7 +20155,6 @@ ol.ui.horizontal.list li:before, border-color: #E0B4B4; color: #9F3A38; -webkit-appearance: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -20821,7 +20302,6 @@ ol.ui.horizontal.list li:before, border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; visibility: visible; z-index: 101; @@ -20829,24 +20309,20 @@ ol.ui.horizontal.list li:before, @-webkit-keyframes form-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes form-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @@ -20922,7 +20398,6 @@ ol.ui.horizontal.list li:before, background: #FFFFFF; border-color: rgba(255, 255, 255, 0.1); color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; box-shadow: none; } @@ -20963,19 +20438,12 @@ ol.ui.horizontal.list li:before, /* Split fields */ .ui.form .fields { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; margin: 0em -0.5em 1em; } .ui.form .fields > .field { - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; flex: 0 1 auto; padding-left: 0.5em; padding-right: 0.5em; @@ -20983,7 +20451,6 @@ ol.ui.horizontal.list li:before, .ui.form .fields > .field:first-child { border-left: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -21038,7 +20505,6 @@ ol.ui.horizontal.list li:before, @media only screen and (max-width: 767px) { .ui.form .fields { - -ms-flex-wrap: wrap; flex-wrap: wrap; } @@ -21180,8 +20646,6 @@ ol.ui.horizontal.list li:before, .ui[class*="equal width"].form .fields > .field, .ui.form [class*="equal width"].fields > .field { width: 100%; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; flex: 1 1 auto; } @@ -21191,8 +20655,6 @@ ol.ui.horizontal.list li:before, .ui.form .inline.fields { margin: 0em 0em 1em; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; } @@ -21254,11 +20716,7 @@ ol.ui.horizontal.list li:before, /* Wide */ .ui.form .inline.fields .wide.field { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; } @@ -21311,7 +20769,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Grid + * # Semantic UI 2.5.0 - Grid * http://github.com/semantic-org/semantic-ui/ * * @@ -21325,17 +20783,9 @@ ol.ui.horizontal.list li:before, *******************************/ .ui.grid { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; - -ms-flex-wrap: wrap; flex-wrap: wrap; - -webkit-box-align: stretch; - -ms-flex-align: stretch; align-items: stretch; padding: 0em; } @@ -21394,20 +20844,10 @@ ol.ui.horizontal.list li:before, .ui.grid > .row { position: relative; - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; - -ms-flex-wrap: wrap; flex-wrap: wrap; - -webkit-box-pack: inherit; - -ms-flex-pack: inherit; justify-content: inherit; - -webkit-box-align: stretch; - -ms-flex-align: stretch; align-items: stretch; width: 100% !important; padding: 0rem; @@ -21464,21 +20904,18 @@ ol.ui.horizontal.list li:before, /* Align Dividers with Gutter */ .ui.grid .row + .ui.divider { - -webkit-box-flex: 1; - -ms-flex-positive: 1; flex-grow: 1; margin: 1rem 1rem; } .ui.grid .column + .ui.vertical.divider { - height: calc(50% - 1rem ); + height: calc(50% - (2rem / 2)); } /* Remove Border on Last Horizontal Segment */ .ui.grid > .row > .column:last-child > .horizontal.segment, .ui.grid > .column:last-child > .horizontal.segment { - -webkit-box-shadow: none; box-shadow: none; } @@ -21702,7 +21139,6 @@ ol.ui.horizontal.list li:before, /* Celled Page */ .ui.celled.page.grid { - -webkit-box-shadow: none; box-shadow: none; } @@ -22416,8 +21852,6 @@ ol.ui.horizontal.list li:before, .ui.centered.grid > .row, .ui.grid > .centered.row { text-align: center; - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; } @@ -22502,7 +21936,6 @@ ol.ui.horizontal.list li:before, .ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row), .ui.divided.grid:not([class*="vertically divided"]) > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); } @@ -22525,7 +21958,6 @@ ol.ui.horizontal.list li:before, .ui.divided.grid:not([class*="vertically divided"]) > .column:first-child, .ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: none; box-shadow: none; } @@ -22538,12 +21970,10 @@ ol.ui.horizontal.list li:before, /* Divided Row */ .ui.grid > .divided.row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); } .ui.grid > .divided.row > .column:first-child { - -webkit-box-shadow: none; box-shadow: none; } @@ -22558,10 +21988,9 @@ ol.ui.horizontal.list li:before, content: ""; top: 0em; left: 0px; - width: calc(100% - 2rem ); + width: calc(100% - 2rem); height: 1px; margin: 0% 1rem; - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); } @@ -22575,7 +22004,6 @@ ol.ui.horizontal.list li:before, /* First Row Vertically Divided */ .ui[class*="vertically divided"].grid > .row:first-child:before { - -webkit-box-shadow: none; box-shadow: none; } @@ -22583,18 +22011,15 @@ ol.ui.horizontal.list li:before, .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row), .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1); box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1); } .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child, .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: none; box-shadow: none; } .ui.inverted[class*="vertically divided"].grid > .row:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1); box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1); } @@ -22603,13 +22028,13 @@ ol.ui.horizontal.list li:before, .ui.relaxed[class*="vertically divided"].grid > .row:before { margin-left: 1.5rem; margin-right: 1.5rem; - width: calc(100% - 3rem ); + width: calc(100% - 3rem); } .ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before { - margin-left: 5rem; - margin-right: 5rem; - width: calc(100% - 5rem ); + margin-left: 2.5rem; + margin-right: 2.5rem; + width: calc(100% - 5rem); } /*---------------------- @@ -22619,7 +22044,6 @@ ol.ui.horizontal.list li:before, .ui.celled.grid { width: 100%; margin: 1em 0em; - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5; } @@ -22627,19 +22051,16 @@ ol.ui.horizontal.list li:before, width: 100% !important; margin: 0em; padding: 0em; - -webkit-box-shadow: 0px -1px 0px 0px #D4D4D5; box-shadow: 0px -1px 0px 0px #D4D4D5; } .ui.celled.grid > .column:not(.row), .ui.celled.grid > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; box-shadow: -1px 0px 0px 0px #D4D4D5; } .ui.celled.grid > .column:first-child, .ui.celled.grid > .row > .column:first-child { - -webkit-box-shadow: none; box-shadow: none; } @@ -22661,18 +22082,15 @@ ol.ui.horizontal.list li:before, /* Internally Celled */ .ui[class*="internally celled"].grid { - -webkit-box-shadow: none; box-shadow: none; margin: 0em; } .ui[class*="internally celled"].grid > .row:first-child { - -webkit-box-shadow: none; box-shadow: none; } .ui[class*="internally celled"].grid > .row > .column:first-child { - -webkit-box-shadow: none; box-shadow: none; } @@ -22687,12 +22105,8 @@ ol.ui.horizontal.list li:before, .ui.grid > [class*="top aligned"].row > .column, .ui.grid > [class*="top aligned"].column:not(.row), .ui.grid > .row > [class*="top aligned"].column { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; vertical-align: top; - -ms-flex-item-align: start !important; align-self: flex-start !important; } @@ -22703,12 +22117,8 @@ ol.ui.horizontal.list li:before, .ui.grid > [class*="middle aligned"].row > .column, .ui.grid > [class*="middle aligned"].column:not(.row), .ui.grid > .row > [class*="middle aligned"].column { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; vertical-align: middle; - -ms-flex-item-align: center !important; align-self: center !important; } @@ -22719,12 +22129,8 @@ ol.ui.horizontal.list li:before, .ui.grid > [class*="bottom aligned"].row > .column, .ui.grid > [class*="bottom aligned"].column:not(.row), .ui.grid > .row > [class*="bottom aligned"].column { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; vertical-align: bottom; - -ms-flex-item-align: end !important; align-self: flex-end !important; } @@ -22735,14 +22141,8 @@ ol.ui.horizontal.list li:before, .ui.grid > .stretched.row > .column, .ui.grid > .stretched.column:not(.row), .ui.grid > .row > .stretched.column { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; display: inline-flex !important; - -ms-flex-item-align: stretch; align-self: stretch; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } @@ -22751,8 +22151,6 @@ ol.ui.horizontal.list li:before, .ui.grid > .stretched.row > .column > *, .ui.grid > .stretched.column:not(.row) > *, .ui.grid > .row > .stretched.column > * { - -webkit-box-flex: 1; - -ms-flex-positive: 1; flex-grow: 1; } @@ -22768,7 +22166,6 @@ ol.ui.horizontal.list li:before, .ui.grid > [class*="left aligned"].column.column, .ui.grid > .row > [class*="left aligned"].column.column { text-align: left; - -ms-flex-item-align: inherit; align-self: inherit; } @@ -22780,13 +22177,10 @@ ol.ui.horizontal.list li:before, .ui.grid > [class*="center aligned"].column.column, .ui.grid > .row > [class*="center aligned"].column.column { text-align: center; - -ms-flex-item-align: inherit; align-self: inherit; } .ui[class*="center aligned"].grid { - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; } @@ -22798,7 +22192,6 @@ ol.ui.horizontal.list li:before, .ui.grid > [class*="right aligned"].column.column, .ui.grid > .row > [class*="right aligned"].column.column { text-align: right; - -ms-flex-item-align: inherit; align-self: inherit; } @@ -22963,16 +22356,12 @@ ol.ui.horizontal.list li:before, .ui[class*="equal width"].grid > .row > .column, .ui.grid > [class*="equal width"].row > .column { display: inline-block; - -webkit-box-flex: 1; - -ms-flex-positive: 1; flex-grow: 1; } .ui[class*="equal width"].grid > .wide.column, .ui[class*="equal width"].grid > .row > .wide.column, .ui.grid > [class*="equal width"].row > .wide.column { - -webkit-box-flex: 0; - -ms-flex-positive: 0; flex-grow: 0; } @@ -22986,17 +22375,11 @@ ol.ui.horizontal.list li:before, .ui[class*="mobile reversed"].grid, .ui[class*="mobile reversed"].grid > .row, .ui.grid > [class*="mobile reversed"].row { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .ui[class*="mobile vertically reversed"].grid, .ui.stackable[class*="mobile reversed"] { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; flex-direction: column-reverse; } @@ -23004,37 +22387,31 @@ ol.ui.horizontal.list li:before, .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); } .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - -webkit-box-shadow: none; box-shadow: none; } /* Vertically Divided Reversed */ .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); } .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before { - -webkit-box-shadow: none; box-shadow: none; } /* Celled Reversed */ .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; box-shadow: -1px 0px 0px 0px #D4D4D5; } .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child { - -webkit-box-shadow: none; box-shadow: none; } } @@ -23045,16 +22422,10 @@ ol.ui.horizontal.list li:before, .ui[class*="tablet reversed"].grid, .ui[class*="tablet reversed"].grid > .row, .ui.grid > [class*="tablet reversed"].row { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .ui[class*="tablet vertically reversed"].grid { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; flex-direction: column-reverse; } @@ -23062,37 +22433,31 @@ ol.ui.horizontal.list li:before, .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); } .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - -webkit-box-shadow: none; box-shadow: none; } /* Vertically Divided Reversed */ .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); } .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before { - -webkit-box-shadow: none; box-shadow: none; } /* Celled Reversed */ .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; box-shadow: -1px 0px 0px 0px #D4D4D5; } .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child { - -webkit-box-shadow: none; box-shadow: none; } } @@ -23103,16 +22468,10 @@ ol.ui.horizontal.list li:before, .ui[class*="computer reversed"].grid, .ui[class*="computer reversed"].grid > .row, .ui.grid > [class*="computer reversed"].row { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .ui[class*="computer vertically reversed"].grid { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; flex-direction: column-reverse; } @@ -23120,37 +22479,31 @@ ol.ui.horizontal.list li:before, .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); } .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - -webkit-box-shadow: none; box-shadow: none; } /* Vertically Divided Reversed */ .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); } .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before { - -webkit-box-shadow: none; box-shadow: none; } /* Celled Reversed */ .ui[class*="computer reversed"].celled.grid > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; box-shadow: -1px 0px 0px 0px #D4D4D5; } .ui[class*="computer reversed"].celled.grid > .row > .column:last-child { - -webkit-box-shadow: none; box-shadow: none; } } @@ -23177,7 +22530,6 @@ ol.ui.horizontal.list li:before, display: inline-block !important; padding-top: 1rem !important; padding-bottom: 1rem !important; - -webkit-box-shadow: none !important; box-shadow: none !important; margin: 0em; } @@ -23287,7 +22639,6 @@ ol.ui.horizontal.list li:before, padding-top: 1rem !important; padding-bottom: 1rem !important; margin: 0em !important; - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -23402,7 +22753,6 @@ ol.ui.horizontal.list li:before, .ui.grid > .stackable.stackable.row > .column { width: 100% !important; margin: 0em 0em !important; - -webkit-box-shadow: none !important; box-shadow: none !important; padding: 1rem 1rem !important; } @@ -23449,14 +22799,12 @@ ol.ui.horizontal.list li:before, .ui.stackable.celled.grid > .row > .column, .ui.stackable.divided:not(.vertically).grid > .row > .column { border-top: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none !important; box-shadow: none !important; padding-top: 2rem !important; padding-bottom: 2rem !important; } .ui.stackable.celled.grid > .row { - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -23639,15 +22987,12 @@ ol.ui.horizontal.list li:before, ---------------*/ .ui.menu { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin: 1rem 0em; font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; background: #FFFFFF; font-weight: normal; border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); border-radius: 0.28571429rem; min-height: 2.85714286em; @@ -23678,8 +23023,6 @@ ol.ui.horizontal.list li:before, } .ui.menu:not(.vertical) > .menu { - display: -webkit-box; - display: -ms-flexbox; display: flex; } @@ -23688,11 +23031,7 @@ ol.ui.horizontal.list li:before, ---------------*/ .ui.menu:not(.vertical) .item { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; } @@ -23702,8 +23041,6 @@ ol.ui.horizontal.list li:before, line-height: 1; text-decoration: none; -webkit-tap-highlight-color: transparent; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-user-select: none; -moz-user-select: none; @@ -23714,10 +23051,7 @@ ol.ui.horizontal.list li:before, text-transform: none; color: rgba(0, 0, 0, 0.87); font-weight: normal; - -webkit-transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease; - transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; } .ui.menu > .item:first-child { @@ -23787,15 +23121,8 @@ ol.ui.horizontal.list li:before, .ui.menu > .grid, .ui.menu > .container { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-align: inherit; - -ms-flex-align: inherit; align-items: inherit; - -webkit-box-orient: inherit; - -webkit-box-direction: inherit; - -ms-flex-direction: inherit; flex-direction: inherit; } @@ -23856,11 +23183,7 @@ ol.ui.horizontal.list li:before, border-radius: 0em 0em 0.28571429rem 0.28571429rem; background: #FFFFFF; margin: 0em 0px 0px; - -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; flex-direction: column !important; } @@ -23875,9 +23198,7 @@ ol.ui.horizontal.list li:before, color: rgba(0, 0, 0, 0.87) !important; text-transform: none !important; font-weight: normal !important; - -webkit-box-shadow: none !important; box-shadow: none !important; - -webkit-transition: none !important; transition: none !important; } @@ -23941,7 +23262,6 @@ ol.ui.horizontal.list li:before, left: 100%; min-width: 0; margin: 0em 0em 0em 0em; - -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); border-radius: 0em 0.28571429rem 0.28571429rem 0.28571429rem; } @@ -23960,7 +23280,6 @@ ol.ui.horizontal.list li:before, } .ui.vertical.menu .dropdown.active.item { - -webkit-box-shadow: none; box-shadow: none; } @@ -24093,7 +23412,6 @@ ol.ui.horizontal.list li:before, background: rgba(0, 0, 0, 0.05); color: rgba(0, 0, 0, 0.95); font-weight: normal; - -webkit-box-shadow: none; box-shadow: none; } @@ -24134,8 +23452,6 @@ Floated Menu / Item .ui.menu:not(.vertical) .left.item, .ui.menu:not(.vertical) :not(.dropdown) > .left.menu { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin-right: auto !important; } @@ -24144,8 +23460,6 @@ Floated Menu / Item .ui.menu:not(.vertical) .right.item, .ui.menu:not(.vertical) .right.menu { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin-left: auto !important; } @@ -24164,12 +23478,8 @@ Floated Menu / Item .ui.vertical.menu { display: block; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); } @@ -24253,7 +23563,6 @@ Floated Menu / Item .ui.vertical.menu .active.item { background: rgba(0, 0, 0, 0.05); border-radius: 0em; - -webkit-box-shadow: none; box-shadow: none; } @@ -24285,7 +23594,6 @@ Floated Menu / Item .ui.tabular.menu { border-radius: 0em; - -webkit-box-shadow: none !important; box-shadow: none !important; border: none; background: none transparent; @@ -24293,7 +23601,7 @@ Floated Menu / Item } .ui.tabular.fluid.menu { - width: calc(100% + 2px ) !important; + width: calc(100% + (1px * 2)) !important; } .ui.tabular.menu .item { @@ -24326,7 +23634,6 @@ Floated Menu / Item border-color: #D4D4D5; font-weight: bold; margin-bottom: -1px; - -webkit-box-shadow: none; box-shadow: none; border-radius: 0.28571429rem 0.28571429rem 0px 0px !important; } @@ -24344,7 +23651,7 @@ Floated Menu / Item .top.attached.segment + .ui.bottom.tabular.menu { position: relative; - width: calc(100% + 2px ); + width: calc(100% + (1px * 2)); left: -1px; } @@ -24353,7 +23660,6 @@ Floated Menu / Item .ui.bottom.tabular.menu { background: none transparent; border-radius: 0em; - -webkit-box-shadow: none !important; box-shadow: none !important; border-bottom: none; border-top: 1px solid #D4D4D5; @@ -24380,7 +23686,6 @@ Floated Menu / Item .ui.vertical.tabular.menu { background: none transparent; border-radius: 0em; - -webkit-box-shadow: none !important; box-shadow: none !important; border-bottom: none; border-right: 1px solid #D4D4D5; @@ -24407,7 +23712,6 @@ Floated Menu / Item .ui.vertical.right.tabular.menu { background: none transparent; border-radius: 0em; - -webkit-box-shadow: none !important; box-shadow: none !important; border-bottom: none; border-right: none; @@ -24446,8 +23750,6 @@ Floated Menu / Item .ui.pagination.menu { margin: 0em; - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } @@ -24480,7 +23782,6 @@ Floated Menu / Item padding-top: 0.92857143em; background-color: rgba(0, 0, 0, 0.05); color: rgba(0, 0, 0, 0.95); - -webkit-box-shadow: none; box-shadow: none; } @@ -24494,22 +23795,18 @@ Floated Menu / Item margin-right: -0.35714286em; border-radius: 0em; border: none; - -webkit-box-shadow: none; box-shadow: none; } /* Item */ .ui.secondary.menu .item { - -ms-flex-item-align: center; align-self: center; - -webkit-box-shadow: none; box-shadow: none; border: none; padding: 0.78571429em 0.92857143em; margin: 0em 0.35714286em; background: none; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; border-radius: 0.28571429rem; } @@ -24546,7 +23843,6 @@ Floated Menu / Item /* Active */ .ui.secondary.menu .active.item { - -webkit-box-shadow: none; box-shadow: none; background: rgba(0, 0, 0, 0.05); color: rgba(0, 0, 0, 0.95); @@ -24556,7 +23852,6 @@ Floated Menu / Item /* Active Hover */ .ui.secondary.menu .active.item:hover { - -webkit-box-shadow: none; box-shadow: none; background: rgba(0, 0, 0, 0.05); color: rgba(0, 0, 0, 0.95); @@ -24593,7 +23888,6 @@ Floated Menu / Item } .ui.secondary.attached.menu { - -webkit-box-shadow: none; box-shadow: none; } @@ -24648,12 +23942,10 @@ Floated Menu / Item border-bottom-color: transparent; border-bottom-style: solid; border-radius: 0em; - -ms-flex-item-align: end; align-self: flex-end; margin: 0em 0em -2px; padding: 0.85714286em 1.14285714em; border-bottom-width: 2px; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -24664,7 +23956,6 @@ Floated Menu / Item } .ui.secondary.pointing.menu .text.item { - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -24694,7 +23985,6 @@ Floated Menu / Item .ui.secondary.pointing.menu .active.item { background-color: transparent; - -webkit-box-shadow: none; box-shadow: none; border-color: #1B1C1D; font-weight: bold; @@ -24778,7 +24068,6 @@ Floated Menu / Item .ui.text.menu { background: none transparent; border-radius: 0px; - -webkit-box-shadow: none; box-shadow: none; border: none; margin: 1em -0.5em; @@ -24786,15 +24075,12 @@ Floated Menu / Item .ui.text.menu .item { border-radius: 0px; - -webkit-box-shadow: none; box-shadow: none; - -ms-flex-item-align: center; align-self: center; margin: 0em 0em; padding: 0.35714286em 0.5em; font-weight: normal; color: rgba(0, 0, 0, 0.6); - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -24880,7 +24166,6 @@ Floated Menu / Item .ui.text.menu .active.item { background-color: transparent; border: none; - -webkit-box-shadow: none; box-shadow: none; font-weight: normal; color: rgba(0, 0, 0, 0.95); @@ -24895,12 +24180,10 @@ Floated Menu / Item /* Disable Bariations */ .ui.text.pointing.menu .active.item:after { - -webkit-box-shadow: none; box-shadow: none; } .ui.text.attached.menu { - -webkit-box-shadow: none; box-shadow: none; } @@ -24988,9 +24271,6 @@ Floated Menu / Item .ui.labeled.icon.menu .item { min-width: 6em; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } @@ -25019,9 +24299,6 @@ Floated Menu / Item @media only screen and (max-width: 767px) { .ui.stackable.menu { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } @@ -25052,9 +24329,6 @@ Floated Menu / Item .ui.stackable.menu .right.menu, .ui.stackable.menu .left.menu { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } } @@ -25144,7 +24418,6 @@ Floated Menu / Item .ui.inverted.menu { border: 0px solid transparent; background: #1B1C1D; - -webkit-box-shadow: none; box-shadow: none; } @@ -25182,7 +24455,6 @@ Floated Menu / Item .ui.inverted.menu .header.item { margin: 0em; background: transparent; - -webkit-box-shadow: none; box-shadow: none; } @@ -25232,7 +24504,6 @@ Floated Menu / Item .ui.inverted.pointing.menu .active.item:after { background: #3D3E3F !important; margin: 0em !important; - -webkit-box-shadow: none !important; box-shadow: none !important; border: none !important; } @@ -25489,8 +24760,6 @@ Floated Menu / Item --------------------*/ .ui.compact.menu { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; margin: 0em; vertical-align: middle; @@ -25537,8 +24806,6 @@ Floated Menu / Item margin-left: 0em !important; margin-right: 0em !important; text-align: center; - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; } @@ -25575,7 +24842,7 @@ Floated Menu / Item } .ui.menu.eight.item .item { - width: 12.500%; + width: 12.5%; } .ui.menu.nine.item .item { @@ -25583,7 +24850,7 @@ Floated Menu / Item } .ui.menu.ten.item .item { - width: 10.0%; + width: 10%; } .ui.menu.eleven.item .item { @@ -25675,7 +24942,6 @@ Floated Menu / Item content: ''; top: 100%; left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); transform: translateX(-50%) translateY(-50%) rotate(45deg); background: none; margin: 0.5px 0em 0em; @@ -25685,7 +24951,6 @@ Floated Menu / Item border-bottom: 1px solid #D4D4D5; border-right: 1px solid #D4D4D5; z-index: 2; - -webkit-transition: background 0.1s ease; transition: background 0.1s ease; } @@ -25695,7 +24960,6 @@ Floated Menu / Item right: 0%; bottom: auto; left: auto; - -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg); transform: translateX(50%) translateY(-50%) rotate(45deg); margin: 0em -0.5px 0em 0em; border: none; @@ -25757,9 +25021,8 @@ Floated Menu / Item bottom: 0px; border-radius: 0px; margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - -webkit-box-shadow: none; + width: calc(100% - (-1px * 2)); + max-width: calc(100% - (-1px * 2)); box-shadow: none; } @@ -25788,7 +25051,6 @@ Floated Menu / Item margin-top: 0em; top: 0px; margin-bottom: 1rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; border-radius: 0em 0em 0.28571429rem 0.28571429rem; } @@ -25915,7 +25177,7 @@ Floated Menu / Item Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Message + * # Semantic UI 2.5.0 - Message * http://github.com/semantic-org/semantic-ui/ * * @@ -25936,12 +25198,8 @@ Floated Menu / Item padding: 1em 1.5em; line-height: 1.4285em; color: rgba(0, 0, 0, 0.87); - -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26043,7 +25301,6 @@ Floated Menu / Item top: 0.78575em; right: 0.5em; opacity: 0.7; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -26082,8 +25339,6 @@ Floated Menu / Item } .ui.icon.visible.visible.visible.visible.message { - display: -webkit-box; - display: -ms-flexbox; display: flex; } @@ -26108,8 +25363,6 @@ Floated Menu / Item } .ui.compact.icon.message { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; } @@ -26120,7 +25373,6 @@ Floated Menu / Item .ui.attached.message { margin-bottom: -1px; border-radius: 0.28571429rem 0.28571429rem 0em 0em; - -webkit-box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset; margin-left: -1px; margin-right: -1px; @@ -26134,7 +25386,6 @@ Floated Menu / Item .ui.bottom.attached.message { margin-top: -1px; border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15); box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15); } @@ -26151,19 +25402,13 @@ Floated Menu / Item ---------------*/ .ui.icon.message { - display: -webkit-box; - display: -ms-flexbox; display: flex; width: 100%; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; } .ui.icon.message > .icon:not(.close) { display: block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; line-height: 1; @@ -26174,8 +25419,6 @@ Floated Menu / Item .ui.icon.message > .content { display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; flex: 1 1 auto; vertical-align: middle; } @@ -26193,7 +25436,6 @@ Floated Menu / Item ---------------*/ .ui.floating.message { - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); } @@ -26219,7 +25461,6 @@ Floated Menu / Item .ui.positive.message, .ui.attached.positive.message { - -webkit-box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26236,7 +25477,6 @@ Floated Menu / Item .ui.negative.message, .ui.attached.negative.message { - -webkit-box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26253,7 +25493,6 @@ Floated Menu / Item .ui.info.message, .ui.attached.info.message { - -webkit-box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26270,7 +25509,6 @@ Floated Menu / Item .ui.warning.message, .ui.attached.warning.message { - -webkit-box-shadow: 0px 0px 0px 1px #C9BA9B inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #C9BA9B inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26287,7 +25525,6 @@ Floated Menu / Item .ui.error.message, .ui.attached.error.message { - -webkit-box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26304,7 +25541,6 @@ Floated Menu / Item .ui.success.message, .ui.attached.success.message { - -webkit-box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26323,7 +25559,6 @@ Floated Menu / Item .ui.red.message { background-color: #FFE8E6; color: #DB2828; - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26334,7 +25569,6 @@ Floated Menu / Item .ui.orange.message { background-color: #FFEDDE; color: #F2711C; - -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #F2711C inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26345,7 +25579,6 @@ Floated Menu / Item .ui.yellow.message { background-color: #FFF8DB; color: #B58105; - -webkit-box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26356,7 +25589,6 @@ Floated Menu / Item .ui.olive.message { background-color: #FBFDEF; color: #8ABC1E; - -webkit-box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26367,7 +25599,6 @@ Floated Menu / Item .ui.green.message { background-color: #E5F9E7; color: #1EBC30; - -webkit-box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26378,7 +25609,6 @@ Floated Menu / Item .ui.teal.message { background-color: #E1F7F7; color: #10A3A3; - -webkit-box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26389,7 +25619,6 @@ Floated Menu / Item .ui.blue.message { background-color: #DFF0FF; color: #2185D0; - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26400,7 +25629,6 @@ Floated Menu / Item .ui.violet.message { background-color: #EAE7FF; color: #6435C9; - -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26411,7 +25639,6 @@ Floated Menu / Item .ui.purple.message { background-color: #F6E7FF; color: #A333C8; - -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26422,7 +25649,6 @@ Floated Menu / Item .ui.pink.message { background-color: #FFE3FB; color: #E03997; - -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26433,7 +25659,6 @@ Floated Menu / Item .ui.brown.message { background-color: #F1E2D3; color: #A5673F; - -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); } @@ -26485,7 +25710,7 @@ Floated Menu / Item Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Table + * # Semantic UI 2.5.0 - Table * http://github.com/semantic-org/semantic-ui/ * * @@ -26505,7 +25730,6 @@ Floated Menu / Item background: #FFFFFF; margin: 1em 0em; border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; box-shadow: none; border-radius: 0.28571429rem; text-align: left; @@ -26530,14 +25754,12 @@ Floated Menu / Item .ui.table th, .ui.table td { - -webkit-transition: background 0.1s ease, color 0.1s ease; transition: background 0.1s ease, color 0.1s ease; } /* Headers */ .ui.table thead { - -webkit-box-shadow: none; box-shadow: none; } @@ -26574,7 +25796,6 @@ Floated Menu / Item /* Footer */ .ui.table tfoot { - -webkit-box-shadow: none; box-shadow: none; } @@ -26684,7 +25905,6 @@ Floated Menu / Item .ui.table:not(.unstackable) tr { padding-top: 1em; padding-bottom: 1em; - -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; } @@ -26693,7 +25913,6 @@ Floated Menu / Item background: none; border: none !important; padding: 0.25em 0.75em !important; - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -26705,7 +25924,6 @@ Floated Menu / Item /* Definition Table */ .ui.definition.table:not(.unstackable) thead th:first-child { - -webkit-box-shadow: none !important; box-shadow: none !important; } } @@ -26765,7 +25983,6 @@ Floated Menu / Item background: transparent; font-weight: normal; color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: -1px -1px 0px 1px #FFFFFF; box-shadow: -1px -1px 0px 1px #FFFFFF; } @@ -26774,19 +25991,16 @@ Floated Menu / Item background: transparent; font-weight: rgba(0, 0, 0, 0.4); color: normal; - -webkit-box-shadow: 1px 1px 0px 1px #FFFFFF; box-shadow: 1px 1px 0px 1px #FFFFFF; } /* Remove Border */ .ui.celled.definition.table thead:not(.full-width) th:first-child { - -webkit-box-shadow: 0px -1px 0px 1px #FFFFFF; box-shadow: 0px -1px 0px 1px #FFFFFF; } .ui.celled.definition.table tfoot:not(.full-width) th:first-child { - -webkit-box-shadow: 0px 1px 0px 1px #FFFFFF; box-shadow: 0px 1px 0px 1px #FFFFFF; } @@ -26798,7 +26012,6 @@ Floated Menu / Item font-weight: bold; color: rgba(0, 0, 0, 0.95); text-transform: ''; - -webkit-box-shadow: ''; box-shadow: ''; text-align: ''; font-size: 1em; @@ -26830,7 +26043,6 @@ Floated Menu / Item .ui.table tr.positive, .ui.table td.positive { - -webkit-box-shadow: 0px 0px 0px #A3C293 inset; box-shadow: 0px 0px 0px #A3C293 inset; } @@ -26846,7 +26058,6 @@ Floated Menu / Item .ui.table tr.negative, .ui.table td.negative { - -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset; box-shadow: 0px 0px 0px #E0B4B4 inset; } @@ -26862,7 +26073,6 @@ Floated Menu / Item .ui.table tr.error, .ui.table td.error { - -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset; box-shadow: 0px 0px 0px #E0B4B4 inset; } @@ -26878,7 +26088,6 @@ Floated Menu / Item .ui.table tr.warning, .ui.table td.warning { - -webkit-box-shadow: 0px 0px 0px #C9BA9B inset; box-shadow: 0px 0px 0px #C9BA9B inset; } @@ -26894,7 +26103,6 @@ Floated Menu / Item .ui.table tr.active, .ui.table td.active { - -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset; box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset; } @@ -26949,7 +26157,6 @@ Floated Menu / Item .ui[class*="tablet stackable"].table tr { padding-top: 1em; padding-bottom: 1em; - -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; } @@ -26958,14 +26165,12 @@ Floated Menu / Item background: none; border: none !important; padding: 0.25em 0.75em; - -webkit-box-shadow: none !important; box-shadow: none !important; } /* Definition Table */ .ui.definition[class*="tablet stackable"].table thead th:first-child { - -webkit-box-shadow: none !important; box-shadow: none !important; } } @@ -27108,9 +26313,8 @@ Floated Menu / Item bottom: 0px; border-radius: 0px; margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - -webkit-box-shadow: none; + width: calc(100% - (-1px * 2)); + max-width: calc(100% - (-1px * 2)); box-shadow: none; border: 1px solid #D4D4D5; } @@ -27140,7 +26344,6 @@ Floated Menu / Item margin-top: 0em; top: 0px; margin-bottom: 1em; - -webkit-box-shadow: none, none; box-shadow: none, none; border-radius: 0em 0em 0.28571429rem 0.28571429rem; } @@ -27564,15 +26767,11 @@ Floated Menu / Item /* Inverted */ .ui.inverted.sortable.table thead th.sorted { - background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05)); color: #ffffff; } .ui.inverted.sortable.table thead th:hover { - background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05)); color: #ffffff; } @@ -27639,13 +26838,11 @@ Floated Menu / Item .ui.basic.table { background: transparent; border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; box-shadow: none; } .ui.basic.table thead, .ui.basic.table tfoot { - -webkit-box-shadow: none; box-shadow: none; } @@ -27780,7 +26977,7 @@ Floated Menu / Item Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Ad + * # Semantic UI 2.5.0 - Ad * http://github.com/semantic-org/semantic-ui/ * * @@ -28045,7 +27242,6 @@ Floated Menu / Item left: 50%; width: 100%; text-align: center; - -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); content: 'Ad'; color: #FFFFFF; @@ -28069,7 +27265,7 @@ Floated Menu / Item User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Item + * # Semantic UI 2.5.0 - Item * http://github.com/semantic-org/semantic-ui/ * * @@ -28090,12 +27286,7 @@ Floated Menu / Item .ui.card { max-width: 100%; position: relative; - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; width: 290px; min-height: 0px; @@ -28103,12 +27294,8 @@ Floated Menu / Item padding: 0em; border: none; border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5; box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5; - -webkit-transition: -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease; - transition: -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease; transition: box-shadow 0.1s ease, transform 0.1s ease; - transition: box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease; z-index: ''; } @@ -28134,17 +27321,12 @@ Floated Menu / Item ---------------*/ .ui.cards { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin: -0.875em -0.5em; - -ms-flex-wrap: wrap; flex-wrap: wrap; } .ui.cards > .card { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin: 0.875em 0.5em; float: none; @@ -28196,8 +27378,6 @@ Floated Menu / Item .ui.card > .image { position: relative; display: block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; padding: 0em; background: rgba(0, 0, 0, 0.05); @@ -28222,15 +27402,12 @@ Floated Menu / Item .ui.cards > .card > .content, .ui.card > .content { - -webkit-box-flex: 1; - -ms-flex-positive: 1; flex-grow: 1; border: none; border-top: 1px solid rgba(34, 36, 38, 0.1); background: none; margin: 0em; padding: 1em 1em; - -webkit-box-shadow: none; box-shadow: none; font-size: 1em; border-radius: 0em; @@ -28383,7 +27560,6 @@ Floated Menu / Item .ui.cards > .card > .content a:not(.ui), .ui.card > .content a:not(.ui) { color: ''; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -28450,7 +27626,6 @@ Floated Menu / Item .ui.card > .content .star.icon { cursor: pointer; opacity: 0.75; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -28473,7 +27648,6 @@ Floated Menu / Item .ui.card > .content .like.icon { cursor: pointer; opacity: 0.75; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -28496,8 +27670,6 @@ Floated Menu / Item .ui.card > .extra { max-width: 100%; min-height: 0em !important; - -webkit-box-flex: 0; - -ms-flex-positive: 0; flex-grow: 0; border-top: 1px solid rgba(0, 0, 0, 0.05) !important; position: static; @@ -28508,9 +27680,7 @@ Floated Menu / Item top: 0em; left: 0em; color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: none; box-shadow: none; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -28534,7 +27704,6 @@ Floated Menu / Item .ui.raised.cards > .card, .ui.raised.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); } @@ -28542,13 +27711,11 @@ Floated Menu / Item .ui.link.cards .raised.card:hover, a.ui.raised.card:hover, .ui.link.raised.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); } .ui.raised.cards > .card, .ui.raised.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); } @@ -28557,8 +27724,6 @@ a.ui.raised.card:hover, --------------------*/ .ui.centered.cards { - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; } @@ -28584,7 +27749,6 @@ a.ui.raised.card:hover, .ui.link.cards .card, a.ui.card, .ui.link.card { - -webkit-transform: none; transform: none; } @@ -28596,9 +27760,7 @@ a.ui.card:hover, z-index: 5; background: #FFFFFF; border: none; - -webkit-box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5; box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5; - -webkit-transform: translateY(-3px); transform: translateY(-3px); } @@ -28611,14 +27773,12 @@ a.ui.card:hover, .ui.red.cards > .card, .ui.cards > .red.card, .ui.red.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #D4D4D5; } .ui.red.cards > .card:hover, .ui.cards > .red.card:hover, .ui.red.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; } @@ -28627,14 +27787,12 @@ a.ui.card:hover, .ui.orange.cards > .card, .ui.cards > .orange.card, .ui.orange.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #F2711C, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #F2711C, 0px 1px 3px 0px #D4D4D5; } .ui.orange.cards > .card:hover, .ui.cards > .orange.card:hover, .ui.orange.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #BCBDBD; } @@ -28643,14 +27801,12 @@ a.ui.card:hover, .ui.yellow.cards > .card, .ui.cards > .yellow.card, .ui.yellow.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #D4D4D5; } .ui.yellow.cards > .card:hover, .ui.cards > .yellow.card:hover, .ui.yellow.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; } @@ -28659,14 +27815,12 @@ a.ui.card:hover, .ui.olive.cards > .card, .ui.cards > .olive.card, .ui.olive.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #D4D4D5; } .ui.olive.cards > .card:hover, .ui.cards > .olive.card:hover, .ui.olive.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; } @@ -28675,14 +27829,12 @@ a.ui.card:hover, .ui.green.cards > .card, .ui.cards > .green.card, .ui.green.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #D4D4D5; } .ui.green.cards > .card:hover, .ui.cards > .green.card:hover, .ui.green.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #BCBDBD; } @@ -28691,14 +27843,12 @@ a.ui.card:hover, .ui.teal.cards > .card, .ui.cards > .teal.card, .ui.teal.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #D4D4D5; } .ui.teal.cards > .card:hover, .ui.cards > .teal.card:hover, .ui.teal.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; } @@ -28707,14 +27857,12 @@ a.ui.card:hover, .ui.blue.cards > .card, .ui.cards > .blue.card, .ui.blue.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #D4D4D5; } .ui.blue.cards > .card:hover, .ui.cards > .blue.card:hover, .ui.blue.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #BCBDBD; } @@ -28723,14 +27871,12 @@ a.ui.card:hover, .ui.violet.cards > .card, .ui.cards > .violet.card, .ui.violet.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #D4D4D5; } .ui.violet.cards > .card:hover, .ui.cards > .violet.card:hover, .ui.violet.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; } @@ -28739,14 +27885,12 @@ a.ui.card:hover, .ui.purple.cards > .card, .ui.cards > .purple.card, .ui.purple.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #D4D4D5; } .ui.purple.cards > .card:hover, .ui.cards > .purple.card:hover, .ui.purple.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; } @@ -28755,14 +27899,12 @@ a.ui.card:hover, .ui.pink.cards > .card, .ui.cards > .pink.card, .ui.pink.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #D4D4D5; } .ui.pink.cards > .card:hover, .ui.cards > .pink.card:hover, .ui.pink.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; } @@ -28771,14 +27913,12 @@ a.ui.card:hover, .ui.brown.cards > .card, .ui.cards > .brown.card, .ui.brown.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #D4D4D5; } .ui.brown.cards > .card:hover, .ui.cards > .brown.card:hover, .ui.brown.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; } @@ -28787,14 +27927,12 @@ a.ui.card:hover, .ui.grey.cards > .card, .ui.cards > .grey.card, .ui.grey.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #D4D4D5; } .ui.grey.cards > .card:hover, .ui.cards > .grey.card:hover, .ui.grey.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; } @@ -28803,14 +27941,12 @@ a.ui.card:hover, .ui.black.cards > .card, .ui.cards > .black.card, .ui.black.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1B1C1D, 0px 1px 3px 0px #D4D4D5; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1B1C1D, 0px 1px 3px 0px #D4D4D5; } .ui.black.cards > .card:hover, .ui.cards > .black.card:hover, .ui.black.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #BCBDBD; box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #BCBDBD; } @@ -29176,7 +28312,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Comment + * # Semantic UI 2.5.0 - Comment * http://github.com/semantic-org/semantic-ui/ * * @@ -29394,7 +28530,6 @@ a.ui.card:hover, .ui.threaded.comments .comment .comments { margin: -1.5em 0 -1em 1.25em; padding: 3em 0em 2em 2.25em; - -webkit-box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15); } @@ -29408,9 +28543,7 @@ a.ui.card:hover, top: 0px; right: 0px; left: auto; - -webkit-transition: opacity 0.2s ease; transition: opacity 0.2s ease; - -webkit-transition-delay: 0.1s; transition-delay: 0.1s; } @@ -29462,7 +28595,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Feed + * # Semantic UI 2.5.0 - Feed * http://github.com/semantic-org/semantic-ui/ * * @@ -29494,12 +28627,7 @@ a.ui.card:hover, /* Event */ .ui.feed > .event { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; width: 100%; padding: 0.21428571rem 0em; @@ -29521,12 +28649,9 @@ a.ui.card:hover, .ui.feed > .event > .label { display: block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; width: 2.5em; height: auto; - -ms-flex-item-align: stretch; align-self: stretch; text-align: left; } @@ -29560,10 +28685,7 @@ a.ui.card:hover, .ui.feed > .event > .content { display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; flex: 1 1 auto; - -ms-flex-item-align: stretch; align-self: stretch; text-align: left; word-wrap: break-word; @@ -29689,7 +28811,6 @@ a.ui.card:hover, background: none; border: none; border-radius: 0; - -webkit-box-shadow: none; box-shadow: none; padding: 0em; color: rgba(0, 0, 0, 0.6); @@ -29712,7 +28833,6 @@ a.ui.card:hover, .ui.feed > .event > .content .meta .like { color: ''; - -webkit-transition: 0.2s color ease; transition: 0.2s color ease; } @@ -29741,7 +28861,6 @@ a.ui.card:hover, cursor: pointer; opacity: 1; color: rgba(0, 0, 0, 0.5); - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -29775,7 +28894,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Item + * # Semantic UI 2.5.0 - Item * http://github.com/semantic-org/semantic-ui/ * * @@ -29793,8 +28912,6 @@ a.ui.card:hover, ---------------*/ .ui.items > .item { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin: 1em 0em; width: 100%; @@ -29803,12 +28920,8 @@ a.ui.card:hover, padding: 0em; border: none; border-radius: 0rem; - -webkit-box-shadow: none; box-shadow: none; - -webkit-transition: -webkit-box-shadow 0.1s ease; - transition: -webkit-box-shadow 0.1s ease; transition: box-shadow 0.1s ease; - transition: box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; z-index: ''; } @@ -29859,15 +28972,12 @@ a.ui.card:hover, .ui.items > .item > .image { position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; display: block; float: none; margin: 0em; padding: 0em; max-height: ''; - -ms-flex-item-align: top; align-self: top; } @@ -29889,13 +28999,10 @@ a.ui.card:hover, .ui.items > .item > .content { display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; flex: 1 1 auto; background: none; margin: 0em; padding: 0em; - -webkit-box-shadow: none; box-shadow: none; font-size: 1em; border: none; @@ -29916,7 +29023,6 @@ a.ui.card:hover, width: auto; display: block; margin-left: 0em; - -ms-flex-item-align: top; align-self: top; padding-left: 1.5em; } @@ -29952,7 +29058,6 @@ a.ui.card:hover, ---------------*/ .ui.items > .item .content img { - -ms-flex-item-align: middle; align-self: middle; width: ''; } @@ -30020,7 +29125,6 @@ a.ui.card:hover, .ui.items > .item > .content a:not(.ui) { color: ''; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -30059,7 +29163,6 @@ a.ui.card:hover, .ui.items > .item > .content .favorite.icon { cursor: pointer; opacity: 0.75; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -30079,7 +29182,6 @@ a.ui.card:hover, .ui.items > .item > .content .like.icon { cursor: pointer; opacity: 0.75; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -30106,9 +29208,7 @@ a.ui.card:hover, top: 0em; left: 0em; color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: none; box-shadow: none; - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; border-top: none; } @@ -30161,9 +29261,6 @@ a.ui.card:hover, @media only screen and (max-width: 767px) { .ui.items:not(.unstackable) > .item { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; margin: 2em 0em; } @@ -30196,17 +29293,14 @@ a.ui.card:hover, --------------------*/ .ui.items > .item > .image + [class*="top aligned"].content { - -ms-flex-item-align: start; align-self: flex-start; } .ui.items > .item > .image + [class*="middle aligned"].content { - -ms-flex-item-align: center; align-self: center; } .ui.items > .item > .image + [class*="bottom aligned"].content { - -ms-flex-item-align: end; align-self: flex-end; } @@ -30296,7 +29390,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Statistic + * # Semantic UI 2.5.0 - Statistic * http://github.com/semantic-org/semantic-ui/ * * @@ -30312,12 +29406,7 @@ a.ui.card:hover, /* Standalone */ .ui.statistic { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; margin: 1em 0em; max-width: auto; @@ -30342,34 +29431,20 @@ a.ui.card:hover, /* Grouped */ .ui.statistics { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-align: start; - -ms-flex-align: start; align-items: flex-start; - -ms-flex-wrap: wrap; flex-wrap: wrap; } .ui.statistics > .statistic { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; flex: 0 1 auto; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; margin: 0em 1.5em 1em; max-width: auto; } .ui.statistics { - display: -webkit-box; - display: -ms-flexbox; display: flex; margin: 1em -1.5em -1em; } @@ -30581,31 +29656,18 @@ a.ui.card:hover, ---------------*/ .ui.horizontal.statistic { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; } .ui.horizontal.statistics { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; margin: 0em; max-width: none; } .ui.horizontal.statistics .statistic { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; max-width: none; margin: 1em 0em; @@ -30928,7 +29990,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Accordion + * # Semantic UI 2.5.0 - Accordion * http://github.com/semantic-org/semantic-ui/ * * @@ -30962,7 +30024,7 @@ a.ui.card:hover, .ui.accordion .title:not(.ui) { padding: 0.5em 0em; - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 1em; color: rgba(0, 0, 0, 0.87); } @@ -30998,12 +30060,8 @@ a.ui.card:hover, margin: 0em 0.25rem 0em 0rem; padding: 0em; font-size: 1em; - -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease; - transition: opacity 0.1s ease, -webkit-transform 0.1s ease; transition: transform 0.1s ease, opacity 0.1s ease; - transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease; vertical-align: baseline; - -webkit-transform: none; transform: none; } @@ -31021,7 +30079,6 @@ a.ui.card:hover, .ui.accordion.menu .item .title > .dropdown.icon { float: right; margin: 0.21425em 0em 0em 1em; - -webkit-transform: rotate(180deg); transform: rotate(180deg); } @@ -31038,12 +30095,10 @@ a.ui.card:hover, .ui.accordion .active.title .dropdown.icon, .ui.accordion .accordion .active.title .dropdown.icon { - -webkit-transform: rotate(90deg); transform: rotate(90deg); } .ui.accordion.menu .item .active.title > .dropdown.icon { - -webkit-transform: rotate(90deg); transform: rotate(90deg); } @@ -31063,7 +30118,6 @@ a.ui.card:hover, .ui.styled.accordion .accordion { border-radius: 0.28571429rem; background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15); box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15); } @@ -31074,7 +30128,6 @@ a.ui.card:hover, color: rgba(0, 0, 0, 0.4); font-weight: bold; border-top: 1px solid rgba(34, 36, 38, 0.15); - -webkit-transition: background 0.1s ease, color 0.1s ease; transition: background 0.1s ease, color 0.1s ease; } @@ -31191,7 +30244,7 @@ a.ui.card:hover, User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Checkbox + * # Semantic UI 2.5.0 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * @@ -31261,10 +30314,7 @@ a.ui.card:hover, content: ''; background: #FFFFFF; border-radius: 0.21428571rem; - -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; border: 1px solid #D4D4D5; } @@ -31283,10 +30333,7 @@ a.ui.card:hover, text-align: center; opacity: 0; color: rgba(0, 0, 0, 0.87); - -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; } /*-------------- @@ -31298,7 +30345,6 @@ a.ui.card:hover, .ui.checkbox label, .ui.checkbox + label { color: rgba(0, 0, 0, 0.87); - -webkit-transition: color 0.1s ease; transition: color 0.1s ease; } @@ -31481,7 +30527,6 @@ a.ui.card:hover, .ui.radio.checkbox .box:before, .ui.radio.checkbox label:before { content: ''; - -webkit-transform: none; transform: none; width: 15px; height: 15px; @@ -31510,7 +30555,6 @@ a.ui.card:hover, width: 15px; height: 15px; border-radius: 500rem; - -webkit-transform: scale(0.46666667); transform: scale(0.46666667); background-color: rgba(0, 0, 0, 0.87); } @@ -31596,10 +30640,8 @@ a.ui.card:hover, background-color: rgba(0, 0, 0, 0.05); width: 3.5rem; height: 0.21428571rem; - -webkit-transform: none; transform: none; border-radius: 500rem; - -webkit-transition: background 0.3s ease; transition: background 0.3s ease; } @@ -31607,24 +30649,19 @@ a.ui.card:hover, .ui.slider.checkbox .box:after, .ui.slider.checkbox label:after { - background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05)); position: absolute; content: '' !important; opacity: 1; z-index: 2; border: none; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; width: 1.5rem; height: 1.5rem; top: -0.25rem; left: 0em; - -webkit-transform: none; transform: none; border-radius: 500rem; - -webkit-transition: left 0.3s ease; transition: left 0.3s ease; } @@ -31713,12 +30750,10 @@ a.ui.card:hover, position: absolute; content: ''; z-index: 1; - -webkit-transform: none; transform: none; border: none; top: 0rem; background: rgba(0, 0, 0, 0.05); - -webkit-box-shadow: none; box-shadow: none; width: 3.5rem; height: 1.5rem; @@ -31729,29 +30764,24 @@ a.ui.card:hover, .ui.toggle.checkbox .box:after, .ui.toggle.checkbox label:after { - background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05)); position: absolute; content: '' !important; opacity: 1; z-index: 2; border: none; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; width: 1.5rem; height: 1.5rem; top: 0rem; left: 0em; border-radius: 500rem; - -webkit-transition: background 0.3s ease, left 0.3s ease; transition: background 0.3s ease, left 0.3s ease; } .ui.toggle.checkbox input ~ .box:after, .ui.toggle.checkbox input ~ label:after { left: -0.05rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; } @@ -31786,7 +30816,6 @@ a.ui.card:hover, .ui.toggle.checkbox input:checked ~ .box:after, .ui.toggle.checkbox input:checked ~ label:after { left: 2.15rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; } @@ -31866,7 +30895,7 @@ a.ui.card:hover, Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Dimmer + * # Semantic UI 2.5.0 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * @@ -31900,17 +30929,9 @@ a.ui.card:hover, animation-fill-mode: both; -webkit-animation-duration: 0.5s; animation-duration: 0.5s; - -webkit-transition: background-color 0.5s linear; transition: background-color 0.5s linear; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; - -webkit-box-align: center; - -ms-flex-align: center; align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; justify-content: center; -webkit-user-select: none; -moz-user-select: none; @@ -31970,8 +30991,6 @@ a.ui.card:hover, .dimmed.dimmable > .ui.animating.dimmer, .dimmed.dimmable > .ui.visible.dimmer, .ui.active.dimmer { - display: -webkit-box; - display: -ms-flexbox; display: flex; opacity: 1; } @@ -32004,14 +31023,10 @@ a.ui.card:hover, ---------------*/ .ui[class*="top aligned"].dimmer { - -webkit-box-pack: start; - -ms-flex-pack: start; justify-content: flex-start; } .ui[class*="bottom aligned"].dimmer { - -webkit-box-pack: end; - -ms-flex-pack: end; justify-content: flex-end; } @@ -32021,11 +31036,8 @@ a.ui.card:hover, .ui.page.dimmer { position: fixed; - -webkit-transform-style: ''; transform-style: ''; - -webkit-perspective: 2000px; perspective: 2000px; - -webkit-transform-origin: center center; transform-origin: center center; } @@ -32045,7 +31057,6 @@ body.dimmable > .dimmer { .blurring.dimmable > :not(.dimmer) { -webkit-filter: blur(0px) grayscale(0); filter: blur(0px) grayscale(0); - -webkit-transition: 800ms -webkit-filter ease; transition: 800ms -webkit-filter ease; transition: 800ms filter ease; transition: 800ms filter ease, 800ms -webkit-filter ease; @@ -32131,7 +31142,7 @@ body.dimmable > .dimmer { User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Dropdown + * # Semantic UI 2.5.0 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * @@ -32150,10 +31161,7 @@ body.dimmable > .dimmer { display: inline-block; outline: none; text-align: left; - -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; transition: box-shadow 0.1s ease, width 0.1s ease; - transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } @@ -32180,11 +31188,9 @@ body.dimmable > .dimmer { font-size: 1em; text-shadow: none; text-align: left; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); border: 1px solid rgba(34, 36, 38, 0.15); border-radius: 0.28571429rem; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; z-index: 11; will-change: transform, opacity; @@ -32230,7 +31236,6 @@ body.dimmable > .dimmer { .ui.dropdown > .text { display: inline-block; - -webkit-transition: none; transition: none; } @@ -32252,7 +31257,6 @@ body.dimmable > .dimmer { font-size: 1rem; text-transform: none; font-weight: normal; - -webkit-box-shadow: none; box-shadow: none; -webkit-touch-callout: none; } @@ -32307,8 +31311,6 @@ body.dimmable > .dimmer { .ui.dropdown.dropdown .menu > .input { width: auto; - display: -webkit-box; - display: -ms-flexbox; display: flex; margin: 1.14285714rem 0.78571429rem; min-width: 10rem; @@ -32448,9 +31450,9 @@ body.dimmable > .dimmer { /* Automatically float dropdown menu right on last menu item */ -.ui.menu .right.menu .dropdown:last-child .menu, -.ui.menu .right.dropdown.item .menu, -.ui.buttons > .ui.dropdown:last-child .menu { +.ui.menu .right.menu .dropdown:last-child > .menu, +.ui.menu .right.dropdown.item > .menu, +.ui.buttons > .ui.dropdown:last-child > .menu { left: auto; right: 0em; } @@ -32495,7 +31497,6 @@ body.dimmable > .dimmer { line-height: 1em; white-space: normal; outline: 0; - -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg); min-width: 14em; min-height: 2.71428571em; @@ -32503,14 +31504,10 @@ body.dimmable > .dimmer { display: inline-block; padding: 0.78571429em 2.1em 0.78571429em 1em; color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; box-shadow: none; border: 1px solid rgba(34, 36, 38, 0.15); border-radius: 0.28571429rem; - -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; transition: box-shadow 0.1s ease, width 0.1s ease; - transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease; } .ui.selection.dropdown.visible, @@ -32539,7 +31536,6 @@ select.ui.dropdown { margin: -0.78571429em; padding: 0.91666667em; opacity: 0.8; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -32564,9 +31560,7 @@ select.ui.dropdown { min-width: calc(100% + 2px ); width: calc(100% + 2px ); border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -32626,7 +31620,6 @@ select.ui.dropdown { .ui.selection.dropdown:hover { border-color: rgba(34, 36, 38, 0.35); - -webkit-box-shadow: none; box-shadow: none; } @@ -32634,13 +31627,11 @@ select.ui.dropdown { .ui.selection.active.dropdown { border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); } .ui.selection.active.dropdown .menu { border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); } @@ -32648,13 +31639,11 @@ select.ui.dropdown { .ui.selection.dropdown:focus { border-color: #96C8DA; - -webkit-box-shadow: none; box-shadow: none; } .ui.selection.dropdown:focus .menu { border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); } @@ -32669,13 +31658,11 @@ select.ui.dropdown { .ui.selection.active.dropdown:hover { border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); } .ui.selection.active.dropdown:hover .menu { border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); } @@ -32698,13 +31685,11 @@ select.ui.dropdown { .ui.active.empty.selection.dropdown { border-radius: 0.28571429rem !important; - -webkit-box-shadow: none !important; box-shadow: none !important; } .ui.active.empty.selection.dropdown .menu { border: none !important; - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -32723,7 +31708,6 @@ select.ui.dropdown { .ui.search.dropdown > input.search { background: none transparent !important; border: none !important; - -webkit-box-shadow: none !important; box-shadow: none !important; cursor: text; top: 0em; @@ -32855,7 +31839,6 @@ select.ui.dropdown { font-size: 1em; padding: 0.35714286em 0.78571429em; margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; } @@ -32954,7 +31937,6 @@ select.ui.dropdown { background: transparent; font-weight: bold; color: rgba(0, 0, 0, 0.95); - -webkit-box-shadow: none; box-shadow: none; z-index: 12; } @@ -33000,7 +31982,6 @@ select.ui.dropdown { content: ''; top: 50%; left: 50%; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; margin: -0.64285714em 0em 0em -0.64285714em; width: 1.28571429em; @@ -33024,24 +32005,20 @@ select.ui.dropdown { @-webkit-keyframes dropdown-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes dropdown-spin { from { - -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { - -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @@ -33065,7 +32042,6 @@ select.ui.dropdown { ----------------------*/ .ui.loading.dropdown > .text { - -webkit-transition: none; transition: none; } @@ -33163,7 +32139,6 @@ select.ui.dropdown { .ui.dropdown > .clear.dropdown.icon { opacity: 0.8; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -33251,7 +32226,6 @@ select.ui.dropdown { .ui.upward.dropdown > .menu { top: auto; bottom: 100%; - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); border-radius: 0.28571429rem 0.28571429rem 0em 0em; } @@ -33279,12 +32253,10 @@ select.ui.dropdown { .ui.upward.selection.dropdown .menu { border-top-width: 1px !important; border-bottom-width: 0px !important; - -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); } .ui.upward.selection.dropdown:hover { - -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); } @@ -33297,7 +32269,6 @@ select.ui.dropdown { /* Visible Upward */ .ui.upward.selection.dropdown.visible { - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; } @@ -33305,12 +32276,10 @@ select.ui.dropdown { /* Visible Hover Upward */ .ui.upward.active.selection.dropdown:hover { - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); } .ui.upward.active.selection.dropdown:hover .menu { - -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); } @@ -33340,7 +32309,6 @@ select.ui.dropdown { position: static; overflow-y: auto; border: none; - -webkit-box-shadow: none !important; box-shadow: none !important; border-radius: 0 !important; margin: 0 !important; @@ -33369,7 +32337,7 @@ select.ui.dropdown { @media all and (-ms-high-contrast: none) { .ui.scrolling.dropdown .menu, .ui.dropdown .scrolling.menu { - min-width: calc(100% - 17px ); + min-width: calc(100% - 17px); } } @@ -33420,7 +32388,6 @@ select.ui.dropdown { opacity: 0; width: 0; height: 0; - -webkit-transition: opacity 0.1s ease; transition: opacity 0.1s ease; } @@ -33483,7 +32450,6 @@ select.ui.dropdown { .ui.floating.dropdown .menu { left: 0; right: auto; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; border-radius: 0.28571429rem !important; } @@ -33509,11 +32475,9 @@ select.ui.dropdown { pointer-events: none; content: ''; visibility: visible; - -webkit-transform: rotate(45deg); transform: rotate(45deg); width: 0.5em; height: 0.5em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); background: #FFFFFF; z-index: 2; @@ -33548,7 +32512,6 @@ select.ui.dropdown { left: 1em; right: auto; margin: 0em; - -webkit-transform: rotate(45deg); transform: rotate(45deg); } @@ -33568,7 +32531,6 @@ select.ui.dropdown { left: auto !important; right: 1em !important; margin: 0em; - -webkit-transform: rotate(45deg); transform: rotate(45deg); } @@ -33585,7 +32547,6 @@ select.ui.dropdown { top: 1em; left: -0.25em; margin: 0em 0em 0em 0em; - -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } @@ -33600,7 +32561,6 @@ select.ui.dropdown { left: auto; right: -0.25em; margin: 0em 0em 0em 0em; - -webkit-transform: rotate(135deg); transform: rotate(135deg); } @@ -33618,7 +32578,6 @@ select.ui.dropdown { left: auto; right: -0.25em; margin: 0em 0em 0em 0em; - -webkit-transform: rotate(135deg); transform: rotate(135deg); } @@ -33637,7 +32596,6 @@ select.ui.dropdown { bottom: -0.25em; right: auto; margin: 0em; - -webkit-transform: rotate(-135deg); transform: rotate(-135deg); } @@ -33686,7 +32644,6 @@ select.ui.dropdown { .ui.top.pointing.upward.dropdown .menu:after { top: 100% !important; bottom: auto !important; - -webkit-box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15); margin: -0.25em 0em 0em; } @@ -33703,7 +32660,6 @@ select.ui.dropdown { top: auto !important; bottom: 0 !important; margin: 0em 0em 1em 0em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); } @@ -33719,7 +32675,6 @@ select.ui.dropdown { top: auto !important; bottom: 0 !important; margin: 0em 0em 1em 0em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); } @@ -33789,7 +32744,7 @@ select.ui.dropdown { User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Video + * # Semantic UI 2.5.0 - Video * http://github.com/semantic-org/semantic-ui/ * * @@ -33873,10 +32828,8 @@ select.ui.dropdown { height: 100%; z-index: 3; content: ''; - background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); opacity: 0.5; - -webkit-transition: opacity 0.5s ease; transition: opacity 0.5s ease; } @@ -33885,12 +32838,10 @@ select.ui.dropdown { top: 50%; left: 50%; z-index: 4; - -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); color: #FFFFFF; font-size: 6rem; text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2); - -webkit-transition: opacity 0.5s ease, color 0.5s ease; transition: opacity 0.5s ease, color 0.5s ease; z-index: 10; } @@ -33904,7 +32855,6 @@ select.ui.dropdown { ---------------*/ .ui.embed .icon:hover:after { - background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); opacity: 1; } @@ -33954,7 +32904,7 @@ select.ui.dropdown { padding-bottom: 42.85714286%; } /*! - * # Semantic UI 2.4.0 - Modal + * # Semantic UI 2.5.0 - Modal * http://github.com/semantic-org/semantic-ui/ * * @@ -33974,12 +32924,8 @@ select.ui.dropdown { text-align: left; background: #FFFFFF; border: none; - -webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); - -webkit-transform-origin: 50% 25%; transform-origin: 50% 25%; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 0.28571429rem; -webkit-user-select: text; @@ -34032,11 +32978,10 @@ select.ui.dropdown { .ui.modal > .header { display: block; - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; background: #FFFFFF; margin: 0em; padding: 1.25rem 1.5rem; - -webkit-box-shadow: none; box-shadow: none; color: rgba(0, 0, 0, 0.85); border-bottom: 1px solid rgba(34, 36, 38, 0.15); @@ -34062,12 +33007,7 @@ select.ui.dropdown { } .ui.modal > .image.content { - display: -webkit-box; - display: -ms-flexbox; display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; flex-direction: row; } @@ -34075,26 +33015,20 @@ select.ui.dropdown { .ui.modal > .content > .image { display: block; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; flex: 0 1 auto; width: ''; - -ms-flex-item-align: top; align-self: top; } .ui.modal > [class*="top aligned"] { - -ms-flex-item-align: top; align-self: top; } .ui.modal > [class*="middle aligned"] { - -ms-flex-item-align: middle; align-self: middle; } .ui.modal > [class*="stretched"] { - -ms-flex-item-align: stretch; align-self: stretch; } @@ -34102,18 +33036,13 @@ select.ui.dropdown { .ui.modal > .content > .description { display: block; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; flex: 1 0 auto; min-width: 0px; - -ms-flex-item-align: top; align-self: top; } .ui.modal > .content > .icon + .description, .ui.modal > .content > .image + .description { - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; flex: 0 1 auto; min-width: ''; width: auto; @@ -34221,9 +33150,6 @@ select.ui.dropdown { /*rtl:ignore*/ .ui.modal .image.content { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; flex-direction: column; } @@ -34247,7 +33173,6 @@ select.ui.dropdown { width: 100% !important; margin: 0em !important; padding: 1rem 0rem !important; - -webkit-box-shadow: none; box-shadow: none; } @@ -34268,7 +33193,6 @@ select.ui.dropdown { ---------------*/ .ui.inverted.dimmer > .ui.modal { - -webkit-box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); } @@ -34280,7 +33204,6 @@ select.ui.dropdown { background-color: transparent; border: none; border-radius: 0em; - -webkit-box-shadow: none !important; box-shadow: none !important; color: #FFFFFF; } @@ -34388,8 +33311,6 @@ select.ui.dropdown { } .scrolling.dimmable > .dimmer { - -webkit-box-pack: start; - -ms-flex-pack: start; justify-content: flex-start; } @@ -34426,7 +33347,7 @@ select.ui.dropdown { /* Scrolling Content */ .ui.modal .scrolling.content { - max-height: calc(70vh); + max-height: calc(80vh - 10em); overflow: auto; } @@ -34436,14 +33357,9 @@ select.ui.dropdown { .ui.fullscreen.modal { width: 95% !important; - left: 0em !important; margin: 1em auto; } -.ui.fullscreen.scrolling.modal { - left: 0em !important; -} - .ui.fullscreen.modal > .header { padding-right: 2.25rem; } @@ -34640,7 +33556,7 @@ select.ui.dropdown { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Nag + * # Semantic UI 2.5.0 - Nag * http://github.com/semantic-org/semantic-ui/ * * @@ -34665,13 +33581,11 @@ select.ui.dropdown { margin: 0em; padding: 0.75em 1em; background: #555555; - -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); font-size: 1rem; text-align: center; color: rgba(0, 0, 0, 0.87); border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-transition: 0.2s background ease; transition: 0.2s background ease; } @@ -34694,7 +33608,6 @@ a.ui.nag { font-size: 1em; margin: -0.5em 0em 0em; color: #FFFFFF; - -webkit-transition: opacity 0.2s ease; transition: opacity 0.2s ease; } @@ -34786,7 +33699,7 @@ a.ui.nag { User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Popup + * # Semantic UI 2.5.0 - Popup * http://github.com/semantic-org/semantic-ui/ * * @@ -34818,13 +33731,12 @@ a.ui.nag { font-style: normal; color: rgba(0, 0, 0, 0.87); border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); } .ui.popup > .header { padding: 0em; - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 1.14285714em; line-height: 1.2; font-weight: bold; @@ -34840,10 +33752,8 @@ a.ui.nag { width: 0.71428571em; height: 0.71428571em; background: #FFFFFF; - -webkit-transform: rotate(45deg); transform: rotate(45deg); z-index: 2; - -webkit-box-shadow: 1px 1px 0px 0px #bababc; box-shadow: 1px 1px 0px 0px #bababc; } @@ -34871,10 +33781,8 @@ a.ui.nag { width: 0.71428571em; height: 0.71428571em; background: #FFFFFF; - -webkit-transform: rotate(45deg); transform: rotate(45deg); z-index: 2; - -webkit-box-shadow: 1px 1px 0px 0px #bababc; box-shadow: 1px 1px 0px 0px #bababc; } @@ -34897,7 +33805,6 @@ a.ui.nag { font-style: normal; color: rgba(0, 0, 0, 0.87); border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); z-index: 1; } @@ -34916,7 +33823,6 @@ a.ui.nag { [data-tooltip]:not([data-position]):after { left: 50%; - -webkit-transform: translateX(-50%); transform: translateX(-50%); bottom: 100%; margin-bottom: 0.5em; @@ -34932,19 +33838,14 @@ a.ui.nag { [data-tooltip]:before { opacity: 0; - -webkit-transform: rotate(45deg) scale(0) !important; transform: rotate(45deg) scale(0) !important; - -webkit-transform-origin: center top; transform-origin: center top; - -webkit-transition: all 0.1s ease; transition: all 0.1s ease; } [data-tooltip]:after { opacity: 1; - -webkit-transform-origin: center bottom; transform-origin: center bottom; - -webkit-transition: all 0.1s ease; transition: all 0.1s ease; } @@ -34955,7 +33856,6 @@ a.ui.nag { } [data-tooltip]:hover:before { - -webkit-transform: rotate(45deg) scale(1) !important; transform: rotate(45deg) scale(1) !important; opacity: 1; } @@ -34965,25 +33865,21 @@ a.ui.nag { [data-tooltip]:after, [data-tooltip][data-position="top center"]:after, [data-tooltip][data-position="bottom center"]:after { - -webkit-transform: translateX(-50%) scale(0) !important; transform: translateX(-50%) scale(0) !important; } [data-tooltip]:hover:after, [data-tooltip][data-position="bottom center"]:hover:after { - -webkit-transform: translateX(-50%) scale(1) !important; transform: translateX(-50%) scale(1) !important; } [data-tooltip][data-position="left center"]:after, [data-tooltip][data-position="right center"]:after { - -webkit-transform: translateY(-50%) scale(0) !important; transform: translateY(-50%) scale(0) !important; } [data-tooltip][data-position="left center"]:hover:after, [data-tooltip][data-position="right center"]:hover:after { - -webkit-transform: translateY(-50%) scale(1) !important; transform: translateY(-50%) scale(1) !important; } @@ -34991,7 +33887,6 @@ a.ui.nag { [data-tooltip][data-position="top right"]:after, [data-tooltip][data-position="bottom left"]:after, [data-tooltip][data-position="bottom right"]:after { - -webkit-transform: scale(0) !important; transform: scale(0) !important; } @@ -34999,7 +33894,6 @@ a.ui.nag { [data-tooltip][data-position="top right"]:hover:after, [data-tooltip][data-position="bottom left"]:hover:after, [data-tooltip][data-position="bottom right"]:hover:after { - -webkit-transform: scale(1) !important; transform: scale(1) !important; } @@ -35010,7 +33904,6 @@ a.ui.nag { /* Arrow */ [data-tooltip][data-inverted]:before { - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -35026,7 +33919,6 @@ a.ui.nag { background: #1B1C1D; color: #FFFFFF; border: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -35046,7 +33938,6 @@ a.ui.nag { right: auto; left: 50%; bottom: 100%; - -webkit-transform: translateX(-50%); transform: translateX(-50%); margin-bottom: 0.5em; } @@ -35106,7 +33997,6 @@ a.ui.nag { right: auto; left: 50%; top: 100%; - -webkit-transform: translateX(-50%); transform: translateX(-50%); margin-top: 0.5em; } @@ -35160,7 +34050,6 @@ a.ui.nag { right: 100%; top: 50%; margin-right: 0.5em; - -webkit-transform: translateY(-50%); transform: translateY(-50%); } @@ -35177,7 +34066,6 @@ a.ui.nag { left: 100%; top: 50%; margin-left: 0.5em; - -webkit-transform: translateY(-50%); transform: translateY(-50%); } @@ -35192,19 +34080,16 @@ a.ui.nag { [data-position~="bottom"][data-tooltip]:before { background: #FFFFFF; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; box-shadow: -1px -1px 0px 0px #bababc; } [data-position="left center"][data-tooltip]:before { background: #FFFFFF; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; box-shadow: 1px -1px 0px 0px #bababc; } [data-position="right center"][data-tooltip]:before { background: #FFFFFF; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; box-shadow: -1px 1px 0px 0px #bababc; } @@ -35216,19 +34101,16 @@ a.ui.nag { [data-inverted][data-position~="bottom"][data-tooltip]:before { background: #1B1C1D; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; box-shadow: -1px -1px 0px 0px #bababc; } [data-inverted][data-position="left center"][data-tooltip]:before { background: #1B1C1D; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; box-shadow: 1px -1px 0px 0px #bababc; } [data-inverted][data-position="right center"][data-tooltip]:before { background: #1B1C1D; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; box-shadow: -1px 1px 0px 0px #bababc; } @@ -35237,32 +34119,26 @@ a.ui.nag { } [data-position~="bottom"][data-tooltip]:before { - -webkit-transform-origin: center bottom; transform-origin: center bottom; } [data-position~="bottom"][data-tooltip]:after { - -webkit-transform-origin: center top; transform-origin: center top; } [data-position="left center"][data-tooltip]:before { - -webkit-transform-origin: top center; transform-origin: top center; } [data-position="left center"][data-tooltip]:after { - -webkit-transform-origin: right center; transform-origin: right center; } [data-position="right center"][data-tooltip]:before { - -webkit-transform-origin: right center; transform-origin: right center; } [data-position="right center"][data-tooltip]:after { - -webkit-transform-origin: left center; transform-origin: left center; } @@ -35281,17 +34157,14 @@ a.ui.nag { } .ui.top.left.popup { - -webkit-transform-origin: left bottom; transform-origin: left bottom; } .ui.top.center.popup { - -webkit-transform-origin: center bottom; transform-origin: center bottom; } .ui.top.right.popup { - -webkit-transform-origin: right bottom; transform-origin: right bottom; } @@ -35299,13 +34172,11 @@ a.ui.nag { .ui.left.center.popup { margin: 0em 0.71428571em 0em 0em; - -webkit-transform-origin: right 50%; transform-origin: right 50%; } .ui.right.center.popup { margin: 0em 0em 0em 0.71428571em; - -webkit-transform-origin: left 50%; transform-origin: left 50%; } @@ -35316,17 +34187,14 @@ a.ui.nag { } .ui.bottom.left.popup { - -webkit-transform-origin: left top; transform-origin: left top; } .ui.bottom.center.popup { - -webkit-transform-origin: center top; transform-origin: center top; } .ui.bottom.right.popup { - -webkit-transform-origin: right top; transform-origin: right top; } @@ -35342,7 +34210,6 @@ a.ui.nag { left: 50%; right: auto; bottom: auto; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; box-shadow: -1px -1px 0px 0px #bababc; } @@ -35358,7 +34225,6 @@ a.ui.nag { right: auto; bottom: auto; margin-left: 0em; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; box-shadow: -1px -1px 0px 0px #bababc; } @@ -35374,7 +34240,6 @@ a.ui.nag { bottom: auto; left: auto; margin-left: 0em; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; box-shadow: -1px -1px 0px 0px #bababc; } @@ -35426,7 +34291,6 @@ a.ui.nag { bottom: auto; left: auto; margin-top: -0.30714286em; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; box-shadow: 1px -1px 0px 0px #bababc; } @@ -35440,7 +34304,6 @@ a.ui.nag { bottom: auto; right: auto; margin-top: -0.30714286em; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; box-shadow: -1px 1px 0px 0px #bababc; } @@ -35501,7 +34364,6 @@ a.ui.nag { } .ui.visible.popup { - -webkit-transform: translateZ(0px); transform: translateZ(0px); -webkit-backface-visibility: hidden; backface-visibility: hidden; @@ -35557,7 +34419,6 @@ a.ui.nag { background: #1B1C1D; color: #FFFFFF; border: none; - -webkit-box-shadow: none; box-shadow: none; } @@ -35568,7 +34429,6 @@ a.ui.nag { .ui.inverted.popup:before { background-color: #1B1C1D; - -webkit-box-shadow: none !important; box-shadow: none !important; } @@ -35616,7 +34476,7 @@ a.ui.nag { User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Progress Bar + * # Semantic UI 2.5.0 - Progress Bar * http://github.com/semantic-org/semantic-ui/ * * @@ -35635,7 +34495,6 @@ a.ui.nag { max-width: 100%; border: none; margin: 1em 0em 2.5em; - -webkit-box-shadow: none; box-shadow: none; background: rgba(0, 0, 0, 0.1); padding: 0em; @@ -35664,7 +34523,6 @@ a.ui.nag { min-width: 2em; background: #888888; border-radius: 0.28571429rem; - -webkit-transition: width 0.1s ease, background-color 0.1s ease; transition: width 0.1s ease, background-color 0.1s ease; } @@ -35701,7 +34559,6 @@ a.ui.nag { text-shadow: none; margin-top: 0.2em; text-align: center; - -webkit-transition: color 0.4s ease; transition: color 0.4s ease; } @@ -36198,7 +35055,7 @@ a.ui.nag { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Rating + * # Semantic UI 2.5.0 - Rating * http://github.com/semantic-org/semantic-ui/ * * @@ -36212,8 +35069,6 @@ a.ui.nag { *******************************/ .ui.rating { - display: -webkit-inline-box; - display: -ms-inline-flexbox; display: inline-flex; white-space: nowrap; vertical-align: baseline; @@ -36231,13 +35086,10 @@ a.ui.nag { text-align: center; font-weight: normal; font-style: normal; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; flex: 1 0 auto; cursor: pointer; width: 1.25em; height: auto; - -webkit-transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; } @@ -36475,7 +35327,7 @@ a.ui.nag { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Search + * # Semantic UI 2.5.0 - Search * http://github.com/semantic-org/semantic-ui/ * * @@ -36506,12 +35358,8 @@ a.ui.nag { background: #FFFFFF; border: 1px solid rgba(34, 36, 38, 0.15); color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease; - transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; } .ui.search .prompt { @@ -36535,7 +35383,6 @@ a.ui.nag { position: absolute; top: 100%; left: 0%; - -webkit-transform-origin: center top; transform-origin: center top; white-space: normal; text-align: left; @@ -36544,7 +35391,6 @@ a.ui.nag { margin-top: 0.5em; width: 18em; border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); border: 1px solid #D4D4D5; z-index: 998; @@ -36604,7 +35450,7 @@ a.ui.nag { .ui.search > .results .result .title { margin: -0.14285714em 0em 0em; - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-weight: bold; font-size: 1em; color: rgba(0, 0, 0, 0.85); @@ -36630,7 +35476,7 @@ a.ui.nag { } .ui.search > .results > .message .header { - font-family: 'IBM Plex Sans', 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 1rem; font-weight: bold; color: rgba(0, 0, 0, 0.87); @@ -36700,7 +35546,6 @@ a.ui.nag { border-color: #767676 transparent transparent; border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; } @@ -36734,7 +35579,6 @@ a.ui.nag { position: relative; border-left-color: rgba(34, 36, 38, 0.1); background: #F3F4F5; - -webkit-box-shadow: none; box-shadow: none; } @@ -36780,7 +35624,6 @@ a.ui.nag { color: ''; top: 0em; right: 0em; - -webkit-transition: color 0.1s ease, opacity 0.1s ease; transition: color 0.1s ease, opacity 0.1s ease; } @@ -36817,9 +35660,7 @@ a.ui.nag { .ui.category.search > .results .category { display: table-row; background: #F3F4F5; - -webkit-box-shadow: none; box-shadow: none; - -webkit-transition: background 0.1s ease, border-color 0.1s ease; transition: background 0.1s ease, border-color 0.1s ease; } @@ -36866,7 +35707,6 @@ a.ui.nag { .ui.category.search > .results .category .result { border-bottom: 1px solid rgba(34, 36, 38, 0.1); - -webkit-transition: background 0.1s ease, border-color 0.1s ease; transition: background 0.1s ease, border-color 0.1s ease; padding: 0.85714286em 1.14285714em; } @@ -36947,7 +35787,7 @@ a.ui.nag { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Shape + * # Semantic UI 2.5.0 - Shape * http://github.com/semantic-org/semantic-ui/ * * @@ -36964,16 +35804,11 @@ a.ui.nag { position: relative; vertical-align: top; display: inline-block; - -webkit-perspective: 2000px; perspective: 2000px; - -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; - transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; } .ui.shape .sides { - -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } @@ -37004,7 +35839,6 @@ a.ui.nag { padding: 2em; background-color: #E6E6E6; color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); } @@ -37080,14 +35914,10 @@ a.ui.nag { } .ui.shape.animating .sides { - -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; - transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; } .ui.shape.animating .side { - -webkit-transition: opacity 0.6s ease-in-out; transition: opacity 0.6s ease-in-out; } @@ -37107,7 +35937,7 @@ a.ui.nag { User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Sidebar + * # Semantic UI 2.5.0 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * @@ -37128,10 +35958,8 @@ a.ui.nag { left: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; - -webkit-transition: none; transition: none; will-change: transform; - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); visibility: hidden; -webkit-overflow-scrolling: touch; @@ -37157,14 +35985,12 @@ a.ui.nag { .ui.left.sidebar { right: auto; left: 0px; - -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .ui.right.sidebar { right: 0px !important; left: auto !important; - -webkit-transform: translate3d(100%, 0%, 0); transform: translate3d(100%, 0%, 0); } @@ -37177,14 +36003,12 @@ a.ui.nag { .ui.top.sidebar { top: 0px !important; bottom: auto !important; - -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); } .ui.bottom.sidebar { top: auto !important; bottom: 0px !important; - -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } @@ -37207,7 +36031,6 @@ body.pushable { /* Page Context */ .pushable:not(body) { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } @@ -37225,10 +36048,7 @@ body.pushable { position: fixed; -webkit-backface-visibility: hidden; backface-visibility: hidden; - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; will-change: transform; z-index: 101; } @@ -37243,10 +36063,7 @@ body.pushable { backface-visibility: hidden; overflow: hidden; min-height: 100%; - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; z-index: 2; } @@ -37272,7 +36089,6 @@ body.pushable > .pusher { background-color: rgba(0, 0, 0, 0.4); overflow: hidden; opacity: 0; - -webkit-transition: opacity 500ms; transition: opacity 500ms; will-change: opacity; z-index: 1000; @@ -37314,7 +36130,6 @@ body.pushable > .pusher { .ui.visible.sidebar { visibility: visible; - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } @@ -37322,13 +36137,11 @@ body.pushable > .pusher { .ui.left.visible.sidebar, .ui.right.visible.sidebar { - -webkit-box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); } .ui.top.visible.sidebar, .ui.bottom.visible.sidebar { - -webkit-box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); } @@ -37336,25 +36149,21 @@ body.pushable > .pusher { .ui.visible.left.sidebar ~ .fixed, .ui.visible.left.sidebar ~ .pusher { - -webkit-transform: translate3d(260px, 0, 0); transform: translate3d(260px, 0, 0); } .ui.visible.right.sidebar ~ .fixed, .ui.visible.right.sidebar ~ .pusher { - -webkit-transform: translate3d(-260px, 0, 0); transform: translate3d(-260px, 0, 0); } .ui.visible.top.sidebar ~ .fixed, .ui.visible.top.sidebar ~ .pusher { - -webkit-transform: translate3d(0, 36px, 0); transform: translate3d(0, 36px, 0); } .ui.visible.bottom.sidebar ~ .fixed, .ui.visible.bottom.sidebar ~ .pusher { - -webkit-transform: translate3d(0, -36px, 0); transform: translate3d(0, -36px, 0); } @@ -37364,7 +36173,6 @@ body.pushable > .pusher { .ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher, .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed, .ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } @@ -37411,25 +36219,21 @@ body.pushable > .pusher { .ui.visible.thin.left.sidebar ~ .fixed, .ui.visible.thin.left.sidebar ~ .pusher { - -webkit-transform: translate3d(150px, 0, 0); transform: translate3d(150px, 0, 0); } .ui.visible[class*="very thin"].left.sidebar ~ .fixed, .ui.visible[class*="very thin"].left.sidebar ~ .pusher { - -webkit-transform: translate3d(60px, 0, 0); transform: translate3d(60px, 0, 0); } .ui.visible.wide.left.sidebar ~ .fixed, .ui.visible.wide.left.sidebar ~ .pusher { - -webkit-transform: translate3d(350px, 0, 0); transform: translate3d(350px, 0, 0); } .ui.visible[class*="very wide"].left.sidebar ~ .fixed, .ui.visible[class*="very wide"].left.sidebar ~ .pusher { - -webkit-transform: translate3d(475px, 0, 0); transform: translate3d(475px, 0, 0); } @@ -37437,25 +36241,21 @@ body.pushable > .pusher { .ui.visible.thin.right.sidebar ~ .fixed, .ui.visible.thin.right.sidebar ~ .pusher { - -webkit-transform: translate3d(-150px, 0, 0); transform: translate3d(-150px, 0, 0); } .ui.visible[class*="very thin"].right.sidebar ~ .fixed, .ui.visible[class*="very thin"].right.sidebar ~ .pusher { - -webkit-transform: translate3d(-60px, 0, 0); transform: translate3d(-60px, 0, 0); } .ui.visible.wide.right.sidebar ~ .fixed, .ui.visible.wide.right.sidebar ~ .pusher { - -webkit-transform: translate3d(-350px, 0, 0); transform: translate3d(-350px, 0, 0); } .ui.visible[class*="very wide"].right.sidebar ~ .fixed, .ui.visible[class*="very wide"].right.sidebar ~ .pusher { - -webkit-transform: translate3d(-475px, 0, 0); transform: translate3d(-475px, 0, 0); } @@ -37476,22 +36276,18 @@ body.pushable > .pusher { /* Initial */ .ui.left.overlay.sidebar { - -webkit-transform: translate3d(-100%, 0%, 0); transform: translate3d(-100%, 0%, 0); } .ui.right.overlay.sidebar { - -webkit-transform: translate3d(100%, 0%, 0); transform: translate3d(100%, 0%, 0); } .ui.top.overlay.sidebar { - -webkit-transform: translate3d(0%, -100%, 0); transform: translate3d(0%, -100%, 0); } .ui.bottom.overlay.sidebar { - -webkit-transform: translate3d(0%, 100%, 0); transform: translate3d(0%, 100%, 0); } @@ -37499,31 +36295,24 @@ body.pushable > .pusher { .animating.ui.overlay.sidebar, .ui.visible.overlay.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; } /* End - Sidebar */ .ui.visible.left.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); transform: translate3d(0%, 0%, 0); } .ui.visible.right.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); transform: translate3d(0%, 0%, 0); } .ui.visible.top.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); transform: translate3d(0%, 0%, 0); } .ui.visible.bottom.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); transform: translate3d(0%, 0%, 0); } @@ -37531,7 +36320,6 @@ body.pushable > .pusher { .ui.visible.overlay.sidebar ~ .fixed, .ui.visible.overlay.sidebar ~ .pusher { - -webkit-transform: none !important; transform: none !important; } @@ -37542,39 +36330,31 @@ body.pushable > .pusher { /* Initial */ .ui.push.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; z-index: 102; } /* Sidebar - Initial */ .ui.left.push.sidebar { - -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .ui.right.push.sidebar { - -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } .ui.top.push.sidebar { - -webkit-transform: translate3d(0%, -100%, 0); transform: translate3d(0%, -100%, 0); } .ui.bottom.push.sidebar { - -webkit-transform: translate3d(0%, 100%, 0); transform: translate3d(0%, 100%, 0); } /* End */ .ui.visible.push.sidebar { - -webkit-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); } @@ -37585,7 +36365,6 @@ body.pushable > .pusher { /* Initial */ .ui.uncover.sidebar { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); z-index: 1; } @@ -37593,12 +36372,8 @@ body.pushable > .pusher { /* End */ .ui.visible.uncover.sidebar { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; } /*-------------- @@ -37614,38 +36389,30 @@ body.pushable > .pusher { /* Sidebar - Initial */ .ui.left.slide.along.sidebar { - -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); } .ui.right.slide.along.sidebar { - -webkit-transform: translate3d(50%, 0, 0); transform: translate3d(50%, 0, 0); } .ui.top.slide.along.sidebar { - -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); } .ui.bottom.slide.along.sidebar { - -webkit-transform: translate3d(0%, 50%, 0); transform: translate3d(0%, 50%, 0); } /* Animation */ .ui.animating.slide.along.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; } /* End */ .ui.visible.slide.along.sidebar { - -webkit-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); } @@ -37662,38 +36429,30 @@ body.pushable > .pusher { /* Sidebar - Initial */ .ui.left.slide.out.sidebar { - -webkit-transform: translate3d(50%, 0, 0); transform: translate3d(50%, 0, 0); } .ui.right.slide.out.sidebar { - -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); } .ui.top.slide.out.sidebar { - -webkit-transform: translate3d(0%, 50%, 0); transform: translate3d(0%, 50%, 0); } .ui.bottom.slide.out.sidebar { - -webkit-transform: translate3d(0%, -50%, 0); transform: translate3d(0%, -50%, 0); } /* Animation */ .ui.animating.slide.out.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; } /* End */ .ui.visible.slide.out.sidebar { - -webkit-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); } @@ -37704,64 +36463,50 @@ body.pushable > .pusher { /* Initial */ .ui.scale.down.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; z-index: 102; } /* Sidebar - Initial */ .ui.left.scale.down.sidebar { - -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .ui.right.scale.down.sidebar { - -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } .ui.top.scale.down.sidebar { - -webkit-transform: translate3d(0%, -100%, 0); transform: translate3d(0%, -100%, 0); } .ui.bottom.scale.down.sidebar { - -webkit-transform: translate3d(0%, 100%, 0); transform: translate3d(0%, 100%, 0); } /* Pusher - Initial */ .ui.scale.down.left.sidebar ~ .pusher { - -webkit-transform-origin: 75% 50%; transform-origin: 75% 50%; } .ui.scale.down.right.sidebar ~ .pusher { - -webkit-transform-origin: 25% 50%; transform-origin: 25% 50%; } .ui.scale.down.top.sidebar ~ .pusher { - -webkit-transform-origin: 50% 75%; transform-origin: 50% 75%; } .ui.scale.down.bottom.sidebar ~ .pusher { - -webkit-transform-origin: 50% 25%; transform-origin: 50% 25%; } /* Animation */ .ui.animating.scale.down > .visible.ui.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; } .ui.visible.scale.down.sidebar ~ .pusher, @@ -37775,12 +36520,10 @@ body.pushable > .pusher { /* End */ .ui.visible.scale.down.sidebar { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .ui.visible.scale.down.sidebar ~ .pusher { - -webkit-transform: scale(0.75); transform: scale(0.75); } @@ -37792,7 +36535,7 @@ body.pushable > .pusher { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Sticky + * # Semantic UI 2.5.0 - Sticky * http://github.com/semantic-org/semantic-ui/ * * @@ -37807,7 +36550,6 @@ body.pushable > .pusher { .ui.sticky { position: static; - -webkit-transition: none; transition: none; z-index: 800; } @@ -37866,7 +36608,7 @@ body.pushable > .pusher { Site Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Tab + * # Semantic UI 2.5.0 - Tab * http://github.com/semantic-org/semantic-ui/ * * @@ -37942,7 +36684,6 @@ body.pushable > .pusher { border-color: #767676 transparent transparent; border-style: solid; border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; box-shadow: 0px 0px 0px 1px transparent; } @@ -37954,7 +36695,7 @@ body.pushable > .pusher { User Overrides *******************************/ /*! - * # Semantic UI 2.4.0 - Transition + * # Semantic UI 2.5.0 - Transition * http://github.com/semantic-org/semantic-ui/ * * @@ -38071,27 +36812,23 @@ body.pushable > .pusher { @-webkit-keyframes browseIn { 0% { - -webkit-transform: scale(0.8) translateZ(0px); transform: scale(0.8) translateZ(0px); z-index: -1; } 10% { - -webkit-transform: scale(0.8) translateZ(0px); transform: scale(0.8) translateZ(0px); z-index: -1; opacity: 0.7; } 80% { - -webkit-transform: scale(1.05) translateZ(0px); transform: scale(1.05) translateZ(0px); opacity: 1; z-index: 999; } 100% { - -webkit-transform: scale(1) translateZ(0px); transform: scale(1) translateZ(0px); z-index: 999; } @@ -38099,27 +36836,23 @@ body.pushable > .pusher { @keyframes browseIn { 0% { - -webkit-transform: scale(0.8) translateZ(0px); transform: scale(0.8) translateZ(0px); z-index: -1; } 10% { - -webkit-transform: scale(0.8) translateZ(0px); transform: scale(0.8) translateZ(0px); z-index: -1; opacity: 0.7; } 80% { - -webkit-transform: scale(1.05) translateZ(0px); transform: scale(1.05) translateZ(0px); opacity: 1; z-index: 999; } 100% { - -webkit-transform: scale(1) translateZ(0px); transform: scale(1) translateZ(0px); z-index: 999; } @@ -38130,13 +36863,11 @@ body.pushable > .pusher { @-webkit-keyframes browseOutLeft { 0% { z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); transform: translateX(0%) rotateY(0deg) rotateX(0deg); } 50% { z-index: -1; - -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); } @@ -38146,7 +36877,6 @@ body.pushable > .pusher { 100% { z-index: -1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); opacity: 0; } @@ -38155,13 +36885,11 @@ body.pushable > .pusher { @keyframes browseOutLeft { 0% { z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); transform: translateX(0%) rotateY(0deg) rotateX(0deg); } 50% { z-index: -1; - -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); } @@ -38171,7 +36899,6 @@ body.pushable > .pusher { 100% { z-index: -1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); opacity: 0; } @@ -38180,13 +36907,11 @@ body.pushable > .pusher { @-webkit-keyframes browseOutRight { 0% { z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); transform: translateX(0%) rotateY(0deg) rotateX(0deg); } 50% { z-index: 1; - -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); } @@ -38196,7 +36921,6 @@ body.pushable > .pusher { 100% { z-index: 1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); opacity: 0; } @@ -38205,13 +36929,11 @@ body.pushable > .pusher { @keyframes browseOutRight { 0% { z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); transform: translateX(0%) rotateY(0deg) rotateX(0deg); } 50% { z-index: 1; - -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); } @@ -38221,7 +36943,6 @@ body.pushable > .pusher { 100% { z-index: 1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); opacity: 0; } @@ -38232,7 +36953,6 @@ body.pushable > .pusher { ---------------*/ .drop.transition { - -webkit-transform-origin: top center; transform-origin: top center; -webkit-animation-duration: 400ms; animation-duration: 400ms; @@ -38255,13 +36975,11 @@ body.pushable > .pusher { @-webkit-keyframes dropIn { 0% { opacity: 0; - -webkit-transform: scale(0); transform: scale(0); } 100% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } } @@ -38269,13 +36987,11 @@ body.pushable > .pusher { @keyframes dropIn { 0% { opacity: 0; - -webkit-transform: scale(0); transform: scale(0); } 100% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } } @@ -38283,13 +36999,11 @@ body.pushable > .pusher { @-webkit-keyframes dropOut { 0% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } 100% { opacity: 0; - -webkit-transform: scale(0); transform: scale(0); } } @@ -38297,13 +37011,11 @@ body.pushable > .pusher { @keyframes dropOut { 0% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } 100% { opacity: 0; - -webkit-transform: scale(0); transform: scale(0); } } @@ -38387,13 +37099,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeInUp { 0% { opacity: 0; - -webkit-transform: translateY(10%); transform: translateY(10%); } 100% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } } @@ -38401,13 +37111,11 @@ body.pushable > .pusher { @keyframes fadeInUp { 0% { opacity: 0; - -webkit-transform: translateY(10%); transform: translateY(10%); } 100% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } } @@ -38415,13 +37123,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeInDown { 0% { opacity: 0; - -webkit-transform: translateY(-10%); transform: translateY(-10%); } 100% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } } @@ -38429,13 +37135,11 @@ body.pushable > .pusher { @keyframes fadeInDown { 0% { opacity: 0; - -webkit-transform: translateY(-10%); transform: translateY(-10%); } 100% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } } @@ -38443,13 +37147,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeInLeft { 0% { opacity: 0; - -webkit-transform: translateX(10%); transform: translateX(10%); } 100% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } } @@ -38457,13 +37159,11 @@ body.pushable > .pusher { @keyframes fadeInLeft { 0% { opacity: 0; - -webkit-transform: translateX(10%); transform: translateX(10%); } 100% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } } @@ -38471,13 +37171,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeInRight { 0% { opacity: 0; - -webkit-transform: translateX(-10%); transform: translateX(-10%); } 100% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } } @@ -38485,13 +37183,11 @@ body.pushable > .pusher { @keyframes fadeInRight { 0% { opacity: 0; - -webkit-transform: translateX(-10%); transform: translateX(-10%); } 100% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } } @@ -38521,13 +37217,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeOutUp { 0% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } 100% { opacity: 0; - -webkit-transform: translateY(5%); transform: translateY(5%); } } @@ -38535,13 +37229,11 @@ body.pushable > .pusher { @keyframes fadeOutUp { 0% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } 100% { opacity: 0; - -webkit-transform: translateY(5%); transform: translateY(5%); } } @@ -38549,13 +37241,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeOutDown { 0% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } 100% { opacity: 0; - -webkit-transform: translateY(-5%); transform: translateY(-5%); } } @@ -38563,13 +37253,11 @@ body.pushable > .pusher { @keyframes fadeOutDown { 0% { opacity: 1; - -webkit-transform: translateY(0%); transform: translateY(0%); } 100% { opacity: 0; - -webkit-transform: translateY(-5%); transform: translateY(-5%); } } @@ -38577,13 +37265,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeOutLeft { 0% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } 100% { opacity: 0; - -webkit-transform: translateX(5%); transform: translateX(5%); } } @@ -38591,13 +37277,11 @@ body.pushable > .pusher { @keyframes fadeOutLeft { 0% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } 100% { opacity: 0; - -webkit-transform: translateX(5%); transform: translateX(5%); } } @@ -38605,13 +37289,11 @@ body.pushable > .pusher { @-webkit-keyframes fadeOutRight { 0% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } 100% { opacity: 0; - -webkit-transform: translateX(-5%); transform: translateX(-5%); } } @@ -38619,13 +37301,11 @@ body.pushable > .pusher { @keyframes fadeOutRight { 0% { opacity: 1; - -webkit-transform: translateX(0%); transform: translateX(0%); } 100% { opacity: 0; - -webkit-transform: translateX(-5%); transform: translateX(-5%); } } @@ -38664,13 +37344,11 @@ body.pushable > .pusher { @-webkit-keyframes horizontalFlipIn { 0% { - -webkit-transform: perspective(2000px) rotateY(-90deg); transform: perspective(2000px) rotateY(-90deg); opacity: 0; } 100% { - -webkit-transform: perspective(2000px) rotateY(0deg); transform: perspective(2000px) rotateY(0deg); opacity: 1; } @@ -38678,13 +37356,11 @@ body.pushable > .pusher { @keyframes horizontalFlipIn { 0% { - -webkit-transform: perspective(2000px) rotateY(-90deg); transform: perspective(2000px) rotateY(-90deg); opacity: 0; } 100% { - -webkit-transform: perspective(2000px) rotateY(0deg); transform: perspective(2000px) rotateY(0deg); opacity: 1; } @@ -38692,13 +37368,11 @@ body.pushable > .pusher { @-webkit-keyframes verticalFlipIn { 0% { - -webkit-transform: perspective(2000px) rotateX(-90deg); transform: perspective(2000px) rotateX(-90deg); opacity: 0; } 100% { - -webkit-transform: perspective(2000px) rotateX(0deg); transform: perspective(2000px) rotateX(0deg); opacity: 1; } @@ -38706,13 +37380,11 @@ body.pushable > .pusher { @keyframes verticalFlipIn { 0% { - -webkit-transform: perspective(2000px) rotateX(-90deg); transform: perspective(2000px) rotateX(-90deg); opacity: 0; } 100% { - -webkit-transform: perspective(2000px) rotateX(0deg); transform: perspective(2000px) rotateX(0deg); opacity: 1; } @@ -38722,13 +37394,11 @@ body.pushable > .pusher { @-webkit-keyframes horizontalFlipOut { 0% { - -webkit-transform: perspective(2000px) rotateY(0deg); transform: perspective(2000px) rotateY(0deg); opacity: 1; } 100% { - -webkit-transform: perspective(2000px) rotateY(90deg); transform: perspective(2000px) rotateY(90deg); opacity: 0; } @@ -38736,13 +37406,11 @@ body.pushable > .pusher { @keyframes horizontalFlipOut { 0% { - -webkit-transform: perspective(2000px) rotateY(0deg); transform: perspective(2000px) rotateY(0deg); opacity: 1; } 100% { - -webkit-transform: perspective(2000px) rotateY(90deg); transform: perspective(2000px) rotateY(90deg); opacity: 0; } @@ -38750,13 +37418,11 @@ body.pushable > .pusher { @-webkit-keyframes verticalFlipOut { 0% { - -webkit-transform: perspective(2000px) rotateX(0deg); transform: perspective(2000px) rotateX(0deg); opacity: 1; } 100% { - -webkit-transform: perspective(2000px) rotateX(-90deg); transform: perspective(2000px) rotateX(-90deg); opacity: 0; } @@ -38764,13 +37430,11 @@ body.pushable > .pusher { @keyframes verticalFlipOut { 0% { - -webkit-transform: perspective(2000px) rotateX(0deg); transform: perspective(2000px) rotateX(0deg); opacity: 1; } 100% { - -webkit-transform: perspective(2000px) rotateX(-90deg); transform: perspective(2000px) rotateX(-90deg); opacity: 0; } @@ -38793,13 +37457,11 @@ body.pushable > .pusher { @-webkit-keyframes scaleIn { 0% { opacity: 0; - -webkit-transform: scale(0.8); transform: scale(0.8); } 100% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } } @@ -38807,13 +37469,11 @@ body.pushable > .pusher { @keyframes scaleIn { 0% { opacity: 0; - -webkit-transform: scale(0.8); transform: scale(0.8); } 100% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } } @@ -38823,13 +37483,11 @@ body.pushable > .pusher { @-webkit-keyframes scaleOut { 0% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } 100% { opacity: 0; - -webkit-transform: scale(0.9); transform: scale(0.9); } } @@ -38837,13 +37495,11 @@ body.pushable > .pusher { @keyframes scaleOut { 0% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } 100% { opacity: 0; - -webkit-transform: scale(0.9); transform: scale(0.9); } } @@ -38857,7 +37513,6 @@ body.pushable > .pusher { .transition.fly { -webkit-animation-duration: 0.6s; animation-duration: 0.6s; - -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } @@ -38918,34 +37573,28 @@ body.pushable > .pusher { @-webkit-keyframes flyIn { 0% { opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } 100% { opacity: 1; - -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @@ -38953,34 +37602,28 @@ body.pushable > .pusher { @keyframes flyIn { 0% { opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 60% { opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03); } 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97); } 100% { opacity: 1; - -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @@ -38988,28 +37631,23 @@ body.pushable > .pusher { @-webkit-keyframes flyInUp { 0% { opacity: 0; - -webkit-transform: translate3d(0, 1500px, 0); transform: translate3d(0, 1500px, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 75% { - -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 90% { - -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); } 100% { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @@ -39017,28 +37655,23 @@ body.pushable > .pusher { @keyframes flyInUp { 0% { opacity: 0; - -webkit-transform: translate3d(0, 1500px, 0); transform: translate3d(0, 1500px, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 75% { - -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 90% { - -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); } 100% { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } @@ -39046,28 +37679,23 @@ body.pushable > .pusher { @-webkit-keyframes flyInDown { 0% { opacity: 0; - -webkit-transform: translate3d(0, -1500px, 0); transform: translate3d(0, -1500px, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); transform: translate3d(0, 25px, 0); } 75% { - -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 90% { - -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0); } 100% { - -webkit-transform: none; transform: none; } } @@ -39075,28 +37703,23 @@ body.pushable > .pusher { @keyframes flyInDown { 0% { opacity: 0; - -webkit-transform: translate3d(0, -1500px, 0); transform: translate3d(0, -1500px, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); transform: translate3d(0, 25px, 0); } 75% { - -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 90% { - -webkit-transform: translate3d(0, 5px, 0); transform: translate3d(0, 5px, 0); } 100% { - -webkit-transform: none; transform: none; } } @@ -39104,28 +37727,23 @@ body.pushable > .pusher { @-webkit-keyframes flyInLeft { 0% { opacity: 0; - -webkit-transform: translate3d(1500px, 0, 0); transform: translate3d(1500px, 0, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); transform: translate3d(-25px, 0, 0); } 75% { - -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } 90% { - -webkit-transform: translate3d(-5px, 0, 0); transform: translate3d(-5px, 0, 0); } 100% { - -webkit-transform: none; transform: none; } } @@ -39133,28 +37751,23 @@ body.pushable > .pusher { @keyframes flyInLeft { 0% { opacity: 0; - -webkit-transform: translate3d(1500px, 0, 0); transform: translate3d(1500px, 0, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); transform: translate3d(-25px, 0, 0); } 75% { - -webkit-transform: translate3d(10px, 0, 0); transform: translate3d(10px, 0, 0); } 90% { - -webkit-transform: translate3d(-5px, 0, 0); transform: translate3d(-5px, 0, 0); } 100% { - -webkit-transform: none; transform: none; } } @@ -39162,28 +37775,23 @@ body.pushable > .pusher { @-webkit-keyframes flyInRight { 0% { opacity: 0; - -webkit-transform: translate3d(-1500px, 0, 0); transform: translate3d(-1500px, 0, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { - -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { - -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } 100% { - -webkit-transform: none; transform: none; } } @@ -39191,28 +37799,23 @@ body.pushable > .pusher { @keyframes flyInRight { 0% { opacity: 0; - -webkit-transform: translate3d(-1500px, 0, 0); transform: translate3d(-1500px, 0, 0); } 60% { opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { - -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { - -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } 100% { - -webkit-transform: none; transform: none; } } @@ -39221,114 +37824,96 @@ body.pushable > .pusher { @-webkit-keyframes flyOut { 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%, 55% { opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 100% { opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } @keyframes flyOut { 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9); } 50%, 55% { opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); } 100% { opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); } } @-webkit-keyframes flyOutUp { 20% { - -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 40%, 45% { opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @keyframes flyOutUp { 20% { - -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); } 40%, 45% { opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0); } } @-webkit-keyframes flyOutDown { 20% { - -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 40%, 45% { opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @keyframes flyOutDown { 20% { - -webkit-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); } 40%, 45% { opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); transform: translate3d(0, 20px, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); transform: translate3d(0, -2000px, 0); } } @@ -39336,13 +37921,11 @@ body.pushable > .pusher { @-webkit-keyframes flyOutRight { 20% { opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); transform: translate3d(20px, 0, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @@ -39350,13 +37933,11 @@ body.pushable > .pusher { @keyframes flyOutRight { 20% { opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); transform: translate3d(20px, 0, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); transform: translate3d(-2000px, 0, 0); } } @@ -39364,13 +37945,11 @@ body.pushable > .pusher { @-webkit-keyframes flyOutLeft { 20% { opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); transform: translate3d(-20px, 0, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @@ -39378,13 +37957,11 @@ body.pushable > .pusher { @keyframes flyOutLeft { 20% { opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); transform: translate3d(-20px, 0, 0); } 100% { opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); transform: translate3d(2000px, 0, 0); } } @@ -39397,28 +37974,24 @@ body.pushable > .pusher { .transition[class*="slide down"].in { -webkit-animation-name: slideInY; animation-name: slideInY; - -webkit-transform-origin: top center; transform-origin: top center; } .transition[class*="slide up"].in { -webkit-animation-name: slideInY; animation-name: slideInY; - -webkit-transform-origin: bottom center; transform-origin: bottom center; } .transition[class*="slide left"].in { -webkit-animation-name: slideInX; animation-name: slideInX; - -webkit-transform-origin: center right; transform-origin: center right; } .transition[class*="slide right"].in { -webkit-animation-name: slideInX; animation-name: slideInX; - -webkit-transform-origin: center left; transform-origin: center left; } @@ -39426,28 +37999,24 @@ body.pushable > .pusher { .transition[class*="slide down"].out { -webkit-animation-name: slideOutY; animation-name: slideOutY; - -webkit-transform-origin: top center; transform-origin: top center; } .transition[class*="slide up"].out { -webkit-animation-name: slideOutY; animation-name: slideOutY; - -webkit-transform-origin: bottom center; transform-origin: bottom center; } .transition[class*="slide left"].out { -webkit-animation-name: slideOutX; animation-name: slideOutX; - -webkit-transform-origin: center right; transform-origin: center right; } .transition[class*="slide right"].out { -webkit-animation-name: slideOutX; animation-name: slideOutX; - -webkit-transform-origin: center left; transform-origin: center left; } @@ -39456,13 +38025,11 @@ body.pushable > .pusher { @-webkit-keyframes slideInY { 0% { opacity: 0; - -webkit-transform: scaleY(0); transform: scaleY(0); } 100% { opacity: 1; - -webkit-transform: scaleY(1); transform: scaleY(1); } } @@ -39470,13 +38037,11 @@ body.pushable > .pusher { @keyframes slideInY { 0% { opacity: 0; - -webkit-transform: scaleY(0); transform: scaleY(0); } 100% { opacity: 1; - -webkit-transform: scaleY(1); transform: scaleY(1); } } @@ -39484,13 +38049,11 @@ body.pushable > .pusher { @-webkit-keyframes slideInX { 0% { opacity: 0; - -webkit-transform: scaleX(0); transform: scaleX(0); } 100% { opacity: 1; - -webkit-transform: scaleX(1); transform: scaleX(1); } } @@ -39498,13 +38061,11 @@ body.pushable > .pusher { @keyframes slideInX { 0% { opacity: 0; - -webkit-transform: scaleX(0); transform: scaleX(0); } 100% { opacity: 1; - -webkit-transform: scaleX(1); transform: scaleX(1); } } @@ -39514,13 +38075,11 @@ body.pushable > .pusher { @-webkit-keyframes slideOutY { 0% { opacity: 1; - -webkit-transform: scaleY(1); transform: scaleY(1); } 100% { opacity: 0; - -webkit-transform: scaleY(0); transform: scaleY(0); } } @@ -39528,13 +38087,11 @@ body.pushable > .pusher { @keyframes slideOutY { 0% { opacity: 1; - -webkit-transform: scaleY(1); transform: scaleY(1); } 100% { opacity: 0; - -webkit-transform: scaleY(0); transform: scaleY(0); } } @@ -39542,13 +38099,11 @@ body.pushable > .pusher { @-webkit-keyframes slideOutX { 0% { opacity: 1; - -webkit-transform: scaleX(1); transform: scaleX(1); } 100% { opacity: 0; - -webkit-transform: scaleX(0); transform: scaleX(0); } } @@ -39556,13 +38111,11 @@ body.pushable > .pusher { @keyframes slideOutX { 0% { opacity: 1; - -webkit-transform: scaleX(1); transform: scaleX(1); } 100% { opacity: 0; - -webkit-transform: scaleX(0); transform: scaleX(0); } } @@ -39579,28 +38132,24 @@ body.pushable > .pusher { .transition[class*="swing down"].in { -webkit-animation-name: swingInX; animation-name: swingInX; - -webkit-transform-origin: top center; transform-origin: top center; } .transition[class*="swing up"].in { -webkit-animation-name: swingInX; animation-name: swingInX; - -webkit-transform-origin: bottom center; transform-origin: bottom center; } .transition[class*="swing left"].in { -webkit-animation-name: swingInY; animation-name: swingInY; - -webkit-transform-origin: center right; transform-origin: center right; } .transition[class*="swing right"].in { -webkit-animation-name: swingInY; animation-name: swingInY; - -webkit-transform-origin: center left; transform-origin: center left; } @@ -39608,28 +38157,24 @@ body.pushable > .pusher { .transition[class*="swing down"].out { -webkit-animation-name: swingOutX; animation-name: swingOutX; - -webkit-transform-origin: top center; transform-origin: top center; } .transition[class*="swing up"].out { -webkit-animation-name: swingOutX; animation-name: swingOutX; - -webkit-transform-origin: bottom center; transform-origin: bottom center; } .transition[class*="swing left"].out { -webkit-animation-name: swingOutY; animation-name: swingOutY; - -webkit-transform-origin: center right; transform-origin: center right; } .transition[class*="swing right"].out { -webkit-animation-name: swingOutY; animation-name: swingOutY; - -webkit-transform-origin: center left; transform-origin: center left; } @@ -39637,116 +38182,96 @@ body.pushable > .pusher { @-webkit-keyframes swingInX { 0% { - -webkit-transform: perspective(1000px) rotateX(90deg); transform: perspective(1000px) rotateX(90deg); opacity: 0; } 40% { - -webkit-transform: perspective(1000px) rotateX(-30deg); transform: perspective(1000px) rotateX(-30deg); opacity: 1; } 60% { - -webkit-transform: perspective(1000px) rotateX(15deg); transform: perspective(1000px) rotateX(15deg); } 80% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); transform: perspective(1000px) rotateX(-7.5deg); } 100% { - -webkit-transform: perspective(1000px) rotateX(0deg); transform: perspective(1000px) rotateX(0deg); } } @keyframes swingInX { 0% { - -webkit-transform: perspective(1000px) rotateX(90deg); transform: perspective(1000px) rotateX(90deg); opacity: 0; } 40% { - -webkit-transform: perspective(1000px) rotateX(-30deg); transform: perspective(1000px) rotateX(-30deg); opacity: 1; } 60% { - -webkit-transform: perspective(1000px) rotateX(15deg); transform: perspective(1000px) rotateX(15deg); } 80% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); transform: perspective(1000px) rotateX(-7.5deg); } 100% { - -webkit-transform: perspective(1000px) rotateX(0deg); transform: perspective(1000px) rotateX(0deg); } } @-webkit-keyframes swingInY { 0% { - -webkit-transform: perspective(1000px) rotateY(-90deg); transform: perspective(1000px) rotateY(-90deg); opacity: 0; } 40% { - -webkit-transform: perspective(1000px) rotateY(30deg); transform: perspective(1000px) rotateY(30deg); opacity: 1; } 60% { - -webkit-transform: perspective(1000px) rotateY(-17.5deg); transform: perspective(1000px) rotateY(-17.5deg); } 80% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); transform: perspective(1000px) rotateY(7.5deg); } 100% { - -webkit-transform: perspective(1000px) rotateY(0deg); transform: perspective(1000px) rotateY(0deg); } } @keyframes swingInY { 0% { - -webkit-transform: perspective(1000px) rotateY(-90deg); transform: perspective(1000px) rotateY(-90deg); opacity: 0; } 40% { - -webkit-transform: perspective(1000px) rotateY(30deg); transform: perspective(1000px) rotateY(30deg); opacity: 1; } 60% { - -webkit-transform: perspective(1000px) rotateY(-17.5deg); transform: perspective(1000px) rotateY(-17.5deg); } 80% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); transform: perspective(1000px) rotateY(7.5deg); } 100% { - -webkit-transform: perspective(1000px) rotateY(0deg); transform: perspective(1000px) rotateY(0deg); } } @@ -39755,28 +38280,23 @@ body.pushable > .pusher { @-webkit-keyframes swingOutX { 0% { - -webkit-transform: perspective(1000px) rotateX(0deg); transform: perspective(1000px) rotateX(0deg); } 40% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); transform: perspective(1000px) rotateX(-7.5deg); } 60% { - -webkit-transform: perspective(1000px) rotateX(17.5deg); transform: perspective(1000px) rotateX(17.5deg); } 80% { - -webkit-transform: perspective(1000px) rotateX(-30deg); transform: perspective(1000px) rotateX(-30deg); opacity: 1; } 100% { - -webkit-transform: perspective(1000px) rotateX(90deg); transform: perspective(1000px) rotateX(90deg); opacity: 0; } @@ -39784,28 +38304,23 @@ body.pushable > .pusher { @keyframes swingOutX { 0% { - -webkit-transform: perspective(1000px) rotateX(0deg); transform: perspective(1000px) rotateX(0deg); } 40% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); transform: perspective(1000px) rotateX(-7.5deg); } 60% { - -webkit-transform: perspective(1000px) rotateX(17.5deg); transform: perspective(1000px) rotateX(17.5deg); } 80% { - -webkit-transform: perspective(1000px) rotateX(-30deg); transform: perspective(1000px) rotateX(-30deg); opacity: 1; } 100% { - -webkit-transform: perspective(1000px) rotateX(90deg); transform: perspective(1000px) rotateX(90deg); opacity: 0; } @@ -39813,28 +38328,23 @@ body.pushable > .pusher { @-webkit-keyframes swingOutY { 0% { - -webkit-transform: perspective(1000px) rotateY(0deg); transform: perspective(1000px) rotateY(0deg); } 40% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); transform: perspective(1000px) rotateY(7.5deg); } 60% { - -webkit-transform: perspective(1000px) rotateY(-10deg); transform: perspective(1000px) rotateY(-10deg); } 80% { - -webkit-transform: perspective(1000px) rotateY(30deg); transform: perspective(1000px) rotateY(30deg); opacity: 1; } 100% { - -webkit-transform: perspective(1000px) rotateY(-90deg); transform: perspective(1000px) rotateY(-90deg); opacity: 0; } @@ -39842,28 +38352,23 @@ body.pushable > .pusher { @keyframes swingOutY { 0% { - -webkit-transform: perspective(1000px) rotateY(0deg); transform: perspective(1000px) rotateY(0deg); } 40% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); transform: perspective(1000px) rotateY(7.5deg); } 60% { - -webkit-transform: perspective(1000px) rotateY(-10deg); transform: perspective(1000px) rotateY(-10deg); } 80% { - -webkit-transform: perspective(1000px) rotateY(30deg); transform: perspective(1000px) rotateY(30deg); opacity: 1; } 100% { - -webkit-transform: perspective(1000px) rotateY(-90deg); transform: perspective(1000px) rotateY(-90deg); opacity: 0; } @@ -39886,13 +38391,11 @@ body.pushable > .pusher { @-webkit-keyframes zoomIn { 0% { opacity: 1; - -webkit-transform: scale(0); transform: scale(0); } 100% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } } @@ -39900,13 +38403,11 @@ body.pushable > .pusher { @keyframes zoomIn { 0% { opacity: 1; - -webkit-transform: scale(0); transform: scale(0); } 100% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } } @@ -39914,13 +38415,11 @@ body.pushable > .pusher { @-webkit-keyframes zoomOut { 0% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } 100% { opacity: 1; - -webkit-transform: scale(0); transform: scale(0); } } @@ -39928,13 +38427,11 @@ body.pushable > .pusher { @keyframes zoomOut { 0% { opacity: 1; - -webkit-transform: scale(1); transform: scale(1); } 100% { opacity: 1; - -webkit-transform: scale(0); transform: scale(0); } } @@ -40027,34 +38524,28 @@ body.pushable > .pusher { @-webkit-keyframes shake { 0%, 100% { - -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translateX(-10px); transform: translateX(-10px); } 20%, 40%, 60%, 80% { - -webkit-transform: translateX(10px); transform: translateX(10px); } } @keyframes shake { 0%, 100% { - -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translateX(-10px); transform: translateX(-10px); } 20%, 40%, 60%, 80% { - -webkit-transform: translateX(10px); transform: translateX(10px); } } @@ -40063,34 +38554,28 @@ body.pushable > .pusher { @-webkit-keyframes bounce { 0%, 20%, 50%, 80%, 100% { - -webkit-transform: translateY(0); transform: translateY(0); } 40% { - -webkit-transform: translateY(-30px); transform: translateY(-30px); } 60% { - -webkit-transform: translateY(-15px); transform: translateY(-15px); } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { - -webkit-transform: translateY(0); transform: translateY(0); } 40% { - -webkit-transform: translateY(-30px); transform: translateY(-30px); } 60% { - -webkit-transform: translateY(-15px); transform: translateY(-15px); } } @@ -40099,54 +38584,44 @@ body.pushable > .pusher { @-webkit-keyframes tada { 0% { - -webkit-transform: scale(1); transform: scale(1); } 10%, 20% { - -webkit-transform: scale(0.9) rotate(-3deg); transform: scale(0.9) rotate(-3deg); } 30%, 50%, 70%, 90% { - -webkit-transform: scale(1.1) rotate(3deg); transform: scale(1.1) rotate(3deg); } 40%, 60%, 80% { - -webkit-transform: scale(1.1) rotate(-3deg); transform: scale(1.1) rotate(-3deg); } 100% { - -webkit-transform: scale(1) rotate(0); transform: scale(1) rotate(0); } } @keyframes tada { 0% { - -webkit-transform: scale(1); transform: scale(1); } 10%, 20% { - -webkit-transform: scale(0.9) rotate(-3deg); transform: scale(0.9) rotate(-3deg); } 30%, 50%, 70%, 90% { - -webkit-transform: scale(1.1) rotate(3deg); transform: scale(1.1) rotate(3deg); } 40%, 60%, 80% { - -webkit-transform: scale(1.1) rotate(-3deg); transform: scale(1.1) rotate(-3deg); } 100% { - -webkit-transform: scale(1) rotate(0); transform: scale(1) rotate(0); } } @@ -40155,19 +38630,16 @@ body.pushable > .pusher { @-webkit-keyframes pulse { 0% { - -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 50% { - -webkit-transform: scale(0.9); transform: scale(0.9); opacity: 0.7; } 100% { - -webkit-transform: scale(1); transform: scale(1); opacity: 1; } @@ -40175,19 +38647,16 @@ body.pushable > .pusher { @keyframes pulse { 0% { - -webkit-transform: scale(1); transform: scale(1); opacity: 1; } 50% { - -webkit-transform: scale(0.9); transform: scale(0.9); opacity: 0.7; } 100% { - -webkit-transform: scale(1); transform: scale(1); opacity: 1; } @@ -40197,74 +38666,60 @@ body.pushable > .pusher { @-webkit-keyframes jiggle { 0% { - -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } 100% { - -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } @keyframes jiggle { 0% { - -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); } 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); } 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); } 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); transform: scale3d(0.95, 1.05, 1); } 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); transform: scale3d(1.05, 0.95, 1); } 100% { - -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } } diff --git a/semantic-ui/semantic.js b/semantic-ui/semantic.js old mode 100644 new mode 100755 index bcd9649..b116333 --- a/semantic-ui/semantic.js +++ b/semantic-ui/semantic.js @@ -1,15 +1,15 @@ /* - * # Semantic UI - 2.4.1 + * # Semantic UI - 2.5.0 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * - * Copyright 2014 Contributors + * Copyright 2022 Contributors * Released under the MIT license * http://opensource.org/licenses/MIT * */ /*! - * # Semantic UI 2.4.1 - Site + * # Semantic UI 2.5.0 - Site * http://github.com/semantic-org/semantic-ui/ * * @@ -497,7 +497,7 @@ $.extend($.expr[ ":" ], { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Form Validation + * # Semantic UI 2.5.0 - Form Validation * http://github.com/semantic-org/semantic-ui/ * * @@ -2204,7 +2204,7 @@ $.fn.form.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Accordion + * # Semantic UI 2.5.0 - Accordion * http://github.com/semantic-org/semantic-ui/ * * @@ -2818,7 +2818,7 @@ $.extend( $.easing, { /*! - * # Semantic UI 2.4.1 - Checkbox + * # Semantic UI 2.5.0 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * @@ -3650,7 +3650,7 @@ $.fn.checkbox.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Dimmer + * # Semantic UI 2.5.0 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * @@ -3802,7 +3802,7 @@ $.fn.dimmer = function(parameters) { event: { click: function(event) { - module.verbose('Determining if event occured on dimmer', event); + module.verbose('Determining if event occurred on dimmer', event); if( $dimmer.find(event.target).length === 0 || $(event.target).is(selector.content) ) { module.hide(); event.stopImmediatePropagation(); @@ -4384,7 +4384,7 @@ $.fn.dimmer.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Dropdown + * # Semantic UI 2.5.0 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * @@ -8340,7 +8340,7 @@ $.fn.dropdown.settings.templates = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Embed + * # Semantic UI 2.5.0 - Embed * http://github.com/semantic-org/semantic-ui/ * * @@ -9047,7 +9047,7 @@ $.fn.embed.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Modal + * # Semantic UI 2.5.0 - Modal * http://github.com/semantic-org/semantic-ui/ * * @@ -9186,6 +9186,9 @@ $.fn.modal = function(parameters) { }, destroy: function() { + if (observer) { + observer.disconnect(); + } module.verbose('Destroying previous modal'); $module .removeData(moduleNamespace) @@ -10082,7 +10085,7 @@ $.fn.modal.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Nag + * # Semantic UI 2.5.0 - Nag * http://github.com/semantic-org/semantic-ui/ * * @@ -10590,7 +10593,7 @@ $.extend( $.easing, { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Popup + * # Semantic UI 2.5.0 - Popup * http://github.com/semantic-org/semantic-ui/ * * @@ -12123,7 +12126,7 @@ $.fn.popup.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Progress + * # Semantic UI 2.5.0 - Progress * http://github.com/semantic-org/semantic-ui/ * * @@ -13055,7 +13058,7 @@ $.fn.progress.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Rating + * # Semantic UI 2.5.0 - Rating * http://github.com/semantic-org/semantic-ui/ * * @@ -13564,7 +13567,7 @@ $.fn.rating.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Search + * # Semantic UI 2.5.0 - Search * http://github.com/semantic-org/semantic-ui/ * * @@ -15070,7 +15073,7 @@ $.fn.search.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Shape + * # Semantic UI 2.5.0 - Shape * http://github.com/semantic-org/semantic-ui/ * * @@ -15992,7 +15995,7 @@ $.fn.shape.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Sidebar + * # Semantic UI 2.5.0 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * @@ -17026,7 +17029,7 @@ $.fn.sidebar.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Sticky + * # Semantic UI 2.5.0 - Sticky * http://github.com/semantic-org/semantic-ui/ * * @@ -17429,6 +17432,18 @@ $.fn.sticky = function(parameters) { module.determineContainer(); } else { + var tallestHeight = Math.max(module.cache.context.height, module.cache.element.height); + if(tallestHeight - $container.outerHeight() > settings.jitter) { + module.debug('Context is taller than container. Specifying exact height for container', module.cache.context.height); + $container.css({ + height: tallestHeight, + }); + } + else { + $container.css({ + height: '', + }); + } if( Math.abs($container.outerHeight() - module.cache.context.height) > settings.jitter) { module.debug('Context has padding, specifying exact height for container', module.cache.context.height); $container.css({ @@ -17465,7 +17480,7 @@ $.fn.sticky = function(parameters) { }, size: function() { if(module.cache.element.height !== 0 && module.cache.element.width !== 0) { - element.style.setProperty('width', module.cache.element.width + 'px', 'important'); + element.style.setProperty('width', module.cache.element.width + 'px', 'important'); element.style.setProperty('height', module.cache.element.height + 'px', 'important'); } } @@ -17528,7 +17543,7 @@ $.fn.sticky = function(parameters) { module.bindBottom(); } else if(scroll.top > element.top) { - if( (element.height + scroll.top - elementScroll) >= context.bottom ) { + if((element.height + scroll.top - elementScroll) >= context.bottom && element.height < context.height) { module.debug('Initial element position is bottom of container'); module.bindBottom(); } @@ -17607,6 +17622,9 @@ $.fn.sticky = function(parameters) { bindTop: function() { module.debug('Binding element to top of parent container'); module.remove.offset(); + if(settings.setSize) { + module.set.size(); + } $module .css({ left : '', @@ -17624,6 +17642,9 @@ $.fn.sticky = function(parameters) { bindBottom: function() { module.debug('Binding element to bottom of parent container'); module.remove.offset(); + if(settings.setSize) { + module.set.size(); + } $module .css({ left : '', @@ -17986,7 +18007,7 @@ $.fn.sticky.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Tab + * # Semantic UI 2.5.0 - Tab * http://github.com/semantic-org/semantic-ui/ * * @@ -18939,7 +18960,7 @@ $.fn.tab.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Transition + * # Semantic UI 2.5.0 - Transition * http://github.com/semantic-org/semantic-ui/ * * @@ -20035,7 +20056,7 @@ $.fn.transition.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - API + * # Semantic UI 2.5.0 - API * http://github.com/semantic-org/semantic-ui/ * * @@ -21203,7 +21224,7 @@ $.api.settings = { })( jQuery, window, document ); /*! - * # Semantic UI 2.4.1 - Visibility + * # Semantic UI 2.5.0 - Visibility * http://github.com/semantic-org/semantic-ui/ * * diff --git a/semantic-ui/themes/basic/assets/fonts/icons.eot b/semantic-ui/themes/basic/assets/fonts/icons.eot new file mode 100644 index 0000000..25066de Binary files /dev/null and b/semantic-ui/themes/basic/assets/fonts/icons.eot differ diff --git a/semantic-ui/themes/basic/assets/fonts/icons.svg b/semantic-ui/themes/basic/assets/fonts/icons.svg new file mode 100644 index 0000000..b9c54d0 --- /dev/null +++ b/semantic-ui/themes/basic/assets/fonts/icons.svg @@ -0,0 +1,450 @@ + + + + +Created by FontForge 20100429 at Thu Sep 20 22:09:47 2012 + By root +Copyright (C) 2012 by original authors @ fontello.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/semantic-ui/themes/basic/assets/fonts/icons.ttf b/semantic-ui/themes/basic/assets/fonts/icons.ttf new file mode 100644 index 0000000..318a264 Binary files /dev/null and b/semantic-ui/themes/basic/assets/fonts/icons.ttf differ diff --git a/semantic-ui/themes/basic/assets/fonts/icons.woff b/semantic-ui/themes/basic/assets/fonts/icons.woff new file mode 100644 index 0000000..baba1b5 Binary files /dev/null and b/semantic-ui/themes/basic/assets/fonts/icons.woff differ diff --git a/semantic-ui/themes/github/assets/fonts/octicons-local.ttf b/semantic-ui/themes/github/assets/fonts/octicons-local.ttf new file mode 100644 index 0000000..d5f4e2e Binary files /dev/null and b/semantic-ui/themes/github/assets/fonts/octicons-local.ttf differ diff --git a/semantic-ui/themes/github/assets/fonts/octicons.svg b/semantic-ui/themes/github/assets/fonts/octicons.svg new file mode 100644 index 0000000..d3116a6 --- /dev/null +++ b/semantic-ui/themes/github/assets/fonts/octicons.svg @@ -0,0 +1,200 @@ + + + + +(c) 2012-2015 GitHub + +When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos) + +Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) +Applies to all font files + +Code License: MIT (http://choosealicense.com/licenses/mit/) +Applies to all other files + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/semantic-ui/themes/github/assets/fonts/octicons.ttf b/semantic-ui/themes/github/assets/fonts/octicons.ttf new file mode 100644 index 0000000..9e09105 Binary files /dev/null and b/semantic-ui/themes/github/assets/fonts/octicons.ttf differ diff --git a/semantic-ui/themes/github/assets/fonts/octicons.woff b/semantic-ui/themes/github/assets/fonts/octicons.woff new file mode 100644 index 0000000..cc3c19f Binary files /dev/null and b/semantic-ui/themes/github/assets/fonts/octicons.woff differ diff --git a/semantic-ui/themes/material/assets/fonts/icons.eot b/semantic-ui/themes/material/assets/fonts/icons.eot new file mode 100644 index 0000000..70508eb Binary files /dev/null and b/semantic-ui/themes/material/assets/fonts/icons.eot differ diff --git a/semantic-ui/themes/material/assets/fonts/icons.svg b/semantic-ui/themes/material/assets/fonts/icons.svg new file mode 100644 index 0000000..a449327 --- /dev/null +++ b/semantic-ui/themes/material/assets/fonts/icons.svg @@ -0,0 +1,2373 @@ + + + + + +Created by FontForge 20151118 at Mon Feb 8 11:58:02 2016 + By shyndman +Copyright 2015 Google, Inc. All Rights Reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/semantic-ui/themes/material/assets/fonts/icons.ttf b/semantic-ui/themes/material/assets/fonts/icons.ttf new file mode 100644 index 0000000..7015564 Binary files /dev/null and b/semantic-ui/themes/material/assets/fonts/icons.ttf differ diff --git a/semantic-ui/themes/material/assets/fonts/icons.woff b/semantic-ui/themes/material/assets/fonts/icons.woff new file mode 100644 index 0000000..b648a3e Binary files /dev/null and b/semantic-ui/themes/material/assets/fonts/icons.woff differ diff --git a/semantic-ui/themes/material/assets/fonts/icons.woff2 b/semantic-ui/themes/material/assets/fonts/icons.woff2 new file mode 100644 index 0000000..9fa2112 Binary files /dev/null and b/semantic-ui/themes/material/assets/fonts/icons.woff2 differ diff --git a/test/index.html b/test/index.html index 79ddb46..f79181a 100644 --- a/test/index.html +++ b/test/index.html @@ -2,7 +2,7 @@