Initial Commit Rework

This commit is contained in:
Qstick 2017-09-03 22:20:56 -04:00
commit 95051cbd63
2483 changed files with 101351 additions and 111396 deletions

View file

@ -0,0 +1,3 @@
.clickable {
cursor: pointer;
}

View file

@ -0,0 +1,8 @@
.cover {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}

View file

@ -0,0 +1,11 @@
.linkOverlay {
composes: cover from 'Styles/Mixins/cover.css';
pointer-events: none;
user-select: none;
a,
button {
pointer-events: all;
}
}

View file

@ -0,0 +1,26 @@
.scrollbar {
&::-webkit-scrollbar {
width: 6px;
height: 6px;
}
}
.scrollbarTrack {
&&::-webkit-scrollbar-track {
background-color: transparent;
}
}
.scrollbarThumb {
&::-webkit-scrollbar-thumb {
min-height: 50px;
border: 1px solid transparent;
border-radius: 5px;
background-color: $scrollbarBackgroundColor;
background-clip: padding-box;
&:hover {
background-color: $scrollbarHoverBackgroundColor;
}
}
}

View file

@ -0,0 +1,18 @@
/**
* From: https://github.com/suitcss/utils-text/blob/master/lib/text.css
*
* Text truncation
*
* Prevent text from wrapping onto multiple lines, and truncate with an
* ellipsis.
*
* 1. Ensure that the node has a maximum width after which truncation can
* occur.
*/
.truncate {
overflow: hidden !important;
max-width: 100%; /* 1 */
text-overflow: ellipsis !important;
white-space: nowrap !important;
}