better extension ui

This commit is contained in:
Mo Bitar
2017-01-04 21:53:05 -06:00
parent 24ed04b46f
commit b494a4da4a
9 changed files with 230 additions and 166 deletions

View File

@@ -278,14 +278,51 @@ Extensions
.extension {
margin-bottom: 18px;
background-color: #ededed;
padding: 10px;
color: black;
> .name {
font-weight: bold;
font-size: 16px;
margin-bottom: 2px;
}
> .subtitle {
font-size: 14px;
margin-bottom: 10px;
}
> .actions {
margin-top: 15px;
font-size: 14px;
.action {
font-weight: bold;
margin-bottom: 10px;
> .name {
font-weight: bold;
}
> .execute {
a {
color: $blue-color;
}
font-weight: bold;
margin-bottom: 3px;
font-size: 12px;
}
> .execute-type {
font-size: 12px;
}
> .last-run {
opacity: 0.5;
font-size: 12px;
}
}
}
}

View File

@@ -3,6 +3,7 @@ $secondary-text-color: rgba($main-text-color, 0.8);
$bg-color: #e3e3e3;
$selection-color: $bg-color;
$selected-text-color: black;
$blue-color: #086dd6;
@mixin MQ-Small() {
@media (max-width: $screen-xs-max) {

View File

@@ -53,8 +53,6 @@
}
}
$note-selection-color: #086dd6;
.note {
width: 100%;
padding: 15px;
@@ -75,13 +73,9 @@
}
&.selected {
background-color: $note-selection-color;
background-color: $blue-color;
color: white;
}
// &:hover:not(.selected) {
// background-color: $note-selection-color;
// color: white;
// }
}
}