Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Added: Sidebar, Dropdown, Card, Input, Select, and many others.
  • Loading branch information
SagnikGanguly96 committed Apr 21, 2022
1 parent 6f589d2 commit de45ed6
Show file tree
Hide file tree
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.
58 changes: 58 additions & 0 deletions addons/ContextJS/chrome-bright.css
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;
}
58 changes: 58 additions & 0 deletions addons/ContextJS/chrome-dark.css
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;
}
20 changes: 20 additions & 0 deletions addons/ContextJS/context.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 63 additions & 0 deletions addons/ContextJS/custom.css
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;
}
51 changes: 51 additions & 0 deletions addons/ContextJS/hackerman.css
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;
}
60 changes: 60 additions & 0 deletions addons/ContextJS/kali_dark.css
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;
}
Loading

0 comments on commit de45ed6

Please sign in to comment.