mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07:00
Initial Commit Rework
This commit is contained in:
parent
74a4cc048c
commit
95051cbd63
2483 changed files with 101351 additions and 111396 deletions
3
frontend/src/Styles/Mixins/clickable.css
Normal file
3
frontend/src/Styles/Mixins/clickable.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.clickable {
|
||||
cursor: pointer;
|
||||
}
|
8
frontend/src/Styles/Mixins/cover.css
Normal file
8
frontend/src/Styles/Mixins/cover.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
.cover {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
11
frontend/src/Styles/Mixins/linkOverlay.css
Normal file
11
frontend/src/Styles/Mixins/linkOverlay.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
.linkOverlay {
|
||||
composes: cover from 'Styles/Mixins/cover.css';
|
||||
|
||||
pointer-events: none;
|
||||
user-select: none;
|
||||
|
||||
a,
|
||||
button {
|
||||
pointer-events: all;
|
||||
}
|
||||
}
|
26
frontend/src/Styles/Mixins/scroller.css
Normal file
26
frontend/src/Styles/Mixins/scroller.css
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
18
frontend/src/Styles/Mixins/truncate.css
Normal file
18
frontend/src/Styles/Mixins/truncate.css
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue