targets #3
This commit is contained in:
parent
11050e6d2a
commit
8747ffd137
1 changed files with 111 additions and 2 deletions
|
@ -563,6 +563,18 @@
|
|||
@if $nojavascript == true {
|
||||
display: none;
|
||||
}
|
||||
input {
|
||||
background: rgb(50, 50, 75);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
div {
|
||||
.edit-zone {
|
||||
.in-edit.button {
|
||||
box-shadow: none !important;
|
||||
color: rgb(255, 255, 255) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -612,6 +624,30 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.right.actions {
|
||||
.item.action {
|
||||
a.add-reaction,
|
||||
a.context-menu {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.menu {
|
||||
&::after {
|
||||
background: rgb(60, 60, 90);
|
||||
}
|
||||
background: rgb(60, 60, 90);
|
||||
.header {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.divider {
|
||||
border-color: rgb(80, 80, 120);
|
||||
}
|
||||
.item.reaction,
|
||||
.item.context {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.segment {
|
||||
background: rgb(50, 50, 75);
|
||||
|
@ -788,17 +824,90 @@
|
|||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.watching {
|
||||
.watching { // Notifications: "Subscribe" / "Unsubscribe"
|
||||
@if $nologin == true {
|
||||
display: none;
|
||||
}
|
||||
div {
|
||||
form {
|
||||
button {
|
||||
background: rgb(70, 70, 105);
|
||||
color: rgb(255, 255, 255);
|
||||
&:hover {
|
||||
background: rgb(60, 60, 90);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#deadline-loader {
|
||||
.timetrack {
|
||||
div {
|
||||
.start-add {
|
||||
button.start {
|
||||
background: rgb(70, 70, 105);
|
||||
color: rgb(255, 255, 255);
|
||||
&:hover {
|
||||
background: rgb(60, 60, 90);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#deadline-loader { // Time Tracker
|
||||
.negative.message {
|
||||
@if $nojavascript == true {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
#deadlineForm {
|
||||
form#update-issue-deadline-form {
|
||||
input#deadlineDate {
|
||||
background: rgb(40, 40, 60);
|
||||
color: rgb(255, 255, 255);
|
||||
&:focus {
|
||||
border-color: rgb(70, 70, 105);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.depending {
|
||||
div {
|
||||
form#addDependencyForm {
|
||||
.action.input {
|
||||
#new-dependency-drop-list {
|
||||
background: rgb(40, 40, 60);
|
||||
color: rgb(255, 255, 255);
|
||||
&.active {
|
||||
border-color: rgb(70, 70, 105);
|
||||
}
|
||||
.text {
|
||||
color: rgb(215, 215, 225);
|
||||
}
|
||||
.menu {
|
||||
background: rgb(50, 50, 75) none repeat scroll 0% 0%;
|
||||
border-color: rgb(70, 70, 105);
|
||||
box-shadow: none;
|
||||
.item {
|
||||
border-color: rgb(70, 70, 105);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.watching { // "Lock conversation"
|
||||
div {
|
||||
button.show-modal {
|
||||
background: rgb(70, 70, 105);
|
||||
color: rgb(255, 255, 255);
|
||||
&:hover {
|
||||
background: rgb(60, 60, 90);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue