-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: Sidebar, Dropdown, Card, Input, Select, and many others.
- Loading branch information
1 parent
6f589d2
commit de45ed6
Showing
8,485 changed files
with
498,671 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.context { | ||
display: inline-block; | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
min-width: 270px; | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
color: #000; | ||
background: #f5f5f5; | ||
font-size: 9pt; | ||
border: 1px solid #333333; | ||
box-shadow: 4px 4px 3px -1px rgba(0, 0, 0, 0.5); | ||
padding: 3px 0px; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
} | ||
|
||
.context .item { | ||
padding: 4px 19px; | ||
cursor: default; | ||
color: inherit; | ||
} | ||
|
||
.context .item:hover { | ||
background: #e3e3e3 !important; | ||
} | ||
|
||
.context .item:hover .hotkey { | ||
color: #000 !important; | ||
} | ||
|
||
.context .disabled { | ||
color: #878B90 !important; | ||
} | ||
|
||
.context .disabled:hover { | ||
background: inherit !important; | ||
} | ||
|
||
.context .disabled:hover .hotkey { | ||
color: #878B90 !important; | ||
} | ||
|
||
.context .separator { | ||
margin: 4px 0px; | ||
height: 0; | ||
padding: 0; | ||
border-top: 1px solid #b3b3b3; | ||
} | ||
|
||
.hotkey { | ||
color: #878B90; | ||
float: right; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.context { | ||
display: inline-block; | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
min-width: 270px; | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
color: #fff; | ||
background: #292A2D; | ||
font-size: 9pt; | ||
border: 1px solid #333333; | ||
box-shadow: 4px 4px 3px -1px rgba(0, 0, 0, 0.5); | ||
padding: 3px 0px; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
} | ||
|
||
.context .item { | ||
padding: 4px 19px; | ||
cursor: default; | ||
color: inherit; | ||
} | ||
|
||
.context .item:hover { | ||
background: #4B4C4F; | ||
} | ||
|
||
.context .item:hover .hotkey { | ||
color: #fff; | ||
} | ||
|
||
.context .disabled { | ||
color: #878B90; | ||
} | ||
|
||
.context .disabled:hover { | ||
background: inherit; | ||
} | ||
|
||
.context .disabled:hover .hotkey { | ||
color: #878B90; | ||
} | ||
|
||
.context .separator { | ||
margin: 4px 0px; | ||
height: 0; | ||
padding: 0; | ||
border-top: 1px solid #454545; | ||
} | ||
|
||
.hotkey { | ||
color: #878B90; | ||
float: right; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
.context { | ||
display: inline-block; | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
min-width: 270px; | ||
color: var(--ctpl-accent-active-text); | ||
background: var(--ctpl-accent-active-dark); | ||
font-size: 9pt; | ||
border: 1px solid #333333; | ||
border-radius: 1rem; | ||
box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.5); | ||
padding: 3px 0px; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
overflow: hidden; | ||
} | ||
|
||
.context .item { | ||
padding: 4px 19px; | ||
cursor: default; | ||
color: inherit; | ||
} | ||
|
||
.context .item:hover { | ||
background: var(--ctpl-accent-active); | ||
} | ||
|
||
.context .item:hover .hotkey { | ||
color: #fff; | ||
} | ||
|
||
.context .item.enabled:not(.has-subitems) { | ||
cursor: pointer; | ||
} | ||
|
||
.context .disabled { | ||
color: #878B90; | ||
} | ||
|
||
.context .disabled:hover { | ||
background: inherit; | ||
} | ||
|
||
.context .disabled:hover .hotkey { | ||
color: #878B90; | ||
} | ||
|
||
.context .separator { | ||
margin: 4px 0px; | ||
height: 0; | ||
padding: 0; | ||
border-top: 1px solid #454545; | ||
} | ||
|
||
.hotkey { | ||
color: #878B90; | ||
float: right; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.context { | ||
display: inline-block; | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
min-width: 270px; | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
color: #878B90; | ||
background: rgba(0, 0, 0, 0.7); | ||
font-size: 9pt; | ||
border: 1px solid #333333; | ||
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5); | ||
padding: 3px 0px; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
} | ||
|
||
.context .item { | ||
padding: 4px 19px; | ||
cursor: default; | ||
color: #878B90; | ||
} | ||
|
||
.context .enabled.item:hover { | ||
background: #73ff00; | ||
color: #000; | ||
font-weight: bold; | ||
} | ||
|
||
.context .separator { | ||
margin: 4px 0px; | ||
height: 0; | ||
padding: 0; | ||
border-top: 1px solid #454545; | ||
} | ||
|
||
.context .hotkey { | ||
float: right; | ||
} | ||
|
||
.context .has-subitems .hotkey { | ||
font-weight: bold; | ||
} | ||
|
||
.context .enabled.item { | ||
color: #73ff00; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
.context { | ||
display: inline-block; | ||
position: fixed; | ||
top: 0px; | ||
left: 0px; | ||
min-width: 270px; | ||
/*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/ | ||
color: #fff; | ||
background: #262933 !important; | ||
font-size: 9pt; | ||
border: 1px solid #333333; | ||
border-radius: 6px; | ||
box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.5); | ||
padding: 3px 0px; | ||
-webkit-touch-callout: none; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
z-index: 999999999; | ||
} | ||
|
||
.context .item { | ||
padding: 4px 19px; | ||
cursor: default; | ||
color: inherit; | ||
} | ||
|
||
.context .item:hover { | ||
background: #2777FF; | ||
} | ||
|
||
.context .item:hover .hotkey { | ||
color: #fff; | ||
} | ||
|
||
.context .disabled { | ||
color: #878B90; | ||
} | ||
|
||
.context .disabled:hover { | ||
background: inherit; | ||
} | ||
|
||
.context .disabled:hover .hotkey { | ||
color: #878B90; | ||
} | ||
|
||
.context .separator { | ||
margin: 4px 0px; | ||
height: 0; | ||
padding: 0; | ||
border-top: 1px solid #454545; | ||
} | ||
|
||
.hotkey { | ||
color: #878B90; | ||
float: right; | ||
} |
Oops, something went wrong.