Add UI for managing repo notifications
This commit is contained in:
parent
a84fe0681a
commit
de8e898ad0
11 changed files with 450 additions and 81 deletions
|
@ -3889,6 +3889,11 @@ pre.command:before {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.dropdown-select input.form-control[readonly] {
|
||||
cursor: pointer;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.dropdown-select .lookahead-input {
|
||||
padding-left: 32px;
|
||||
}
|
||||
|
@ -4429,3 +4434,42 @@ have a fixed width and height (but it's not required).
|
|||
float: right;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
i.quay-icon {
|
||||
background-image: url(/static/img/favicon.ico);
|
||||
background-size: 16px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.external-notification-view-element {
|
||||
margin: 10px;
|
||||
padding: 6px;
|
||||
border: 1px solid #eee;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.external-notification-view-element .view-row {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.external-notification-view-element .view-row:last-child {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.external-notification-view-element .flow-text {
|
||||
display: inline-block;
|
||||
color: #aaa;
|
||||
text-transform: lowercase;
|
||||
font-variant: small-caps;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.external-notification-view-element .side-controls {
|
||||
opacity: 0;
|
||||
transition: opacity 300ms ease-in-out;
|
||||
}
|
||||
|
||||
.external-notification-view-element:hover .side-controls {
|
||||
opacity: 1;
|
||||
}
|
Reference in a new issue