Skip to content

Commit 2dec514

Browse files
Updated component to version 2.2.11
1 parent 8aefa3c commit 2dec514

8 files changed

+56
-9
lines changed

RELEASE-NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 2.2.11 - July 11, 2017
2+
3+
- **Site** - Site now includes custom styles for in-page UI scrollbars (but not actual page scrollbar) by default in WebKit/Chrome. Components with inverted content like dimmer include an inverted scrollbar. You can disable this by setting `@useCustomScrollbars: false` in your `site.variables`
4+
15
### Version 2.2.0 - June 26, 2016
26

37
- **Site** - Added colored box shadow defaults. `ui message` now includes individual colored border shadows based on new site defaults.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"framework"
1616
],
1717
"license": "MIT",
18-
"version": "2.2.10"
18+
"version": "2.2.11"
1919
}

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.10 - Site
2+
* # Semantic UI 2.2.11 - Site
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "semantic-ui-site",
3-
"version": "2.2.10",
3+
"version": "2.2.11",
44
"title": "Semantic UI - Site",
55
"description": "Single component release of site",
66
"homepage": "http://www.semantic-ui.com",

site.css

+44-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.10 - Site
2+
* # Semantic UI 2.2.11 - Site
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -111,6 +111,12 @@ a:hover {
111111
}
112112

113113

114+
/*******************************
115+
Scrollbars
116+
*******************************/
117+
118+
119+
114120
/*******************************
115121
Highlighting
116122
*******************************/
@@ -147,6 +153,43 @@ input::selection {
147153
color: rgba(0, 0, 0, 0.87);
148154
}
149155

156+
/* Force Simple Scrollbars */
157+
body ::-webkit-scrollbar {
158+
-webkit-appearance: none;
159+
width: 10px;
160+
}
161+
body ::-webkit-scrollbar-track {
162+
background: rgba(0, 0, 0, 0.1);
163+
border-radius: 0px;
164+
}
165+
body ::-webkit-scrollbar-thumb {
166+
cursor: pointer;
167+
border-radius: 5px;
168+
background: rgba(0, 0, 0, 0.25);
169+
-webkit-transition: color 0.2s ease;
170+
transition: color 0.2s ease;
171+
}
172+
body ::-webkit-scrollbar-thumb:window-inactive {
173+
background: rgba(0, 0, 0, 0.15);
174+
}
175+
body ::-webkit-scrollbar-thumb:hover {
176+
background: rgba(128, 135, 139, 0.8);
177+
}
178+
179+
/* Inverted UI */
180+
body .ui.inverted::-webkit-scrollbar-track {
181+
background: rgba(255, 255, 255, 0.1);
182+
}
183+
body .ui.inverted::-webkit-scrollbar-thumb {
184+
background: rgba(255, 255, 255, 0.25);
185+
}
186+
body .ui.inverted::-webkit-scrollbar-thumb:window-inactive {
187+
background: rgba(255, 255, 255, 0.15);
188+
}
189+
body .ui.inverted::-webkit-scrollbar-thumb:hover {
190+
background: rgba(255, 255, 255, 0.35);
191+
}
192+
150193

151194
/*******************************
152195
Global Overrides

site.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.10 - Site
2+
* # Semantic UI 2.2.11 - Site
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

site.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)