style appbar links and kebab menu

This commit is contained in:
Frédéric Péters 2018-08-15 16:10:36 +02:00
parent 674050dbb6
commit 86fc6c6ca1
1 changed files with 42 additions and 18 deletions

View File

@ -1056,67 +1056,91 @@ $colors: "4e7ee2", "ff375e", "6f2b92";
}
span.actions {
position: absolute;
bottom: 8px;
bottom: 0px;
right: 0;
a {
float: right;
margin-left: 2em;
}
}
& > a,
span.actions > a {
background: white;
color: $primary-color;
font-weight: bold;
border-radius: 3px;
border: 1px solid $primary-color;
padding: 6px 14px;
&:hover {
background: $primary-color;
color: white;
}
&.disabled {
border-color: #aaa;
color: #aaa;
background: #eee;
pointer-events: none;
&:hover {
background: #eee;
color: #aaa;
}
}
}
border-radius: 3px 3px 0 0;
.extra-actions-menu-opener {
border: none;
span.actions a.extra-actions-menu-opener,
a.extra-actions-menu-opener {
border: 1px solid transparent;
color: $primary-color;
&::before {
border-radius: 3px;
cursor: pointer;
content: "\f142"; /* ellipsis-v */
font-family: FontAwesome;
font-size: 140%;
padding: 2px 1ex;
margin-right: -0.5ex;
border: 1px solid transparent;
border-bottom: 0;
position: relative;
z-index: 200;
top: 2px;
}
&.open::before {
background: #fafafa;
border-color: #d0d0d0;
&.open, &.open:hover {
background: $primary-color;
color: white;
border: 1px solid transparent;
border-radius: 3px 3px 0 0;
}
}
.extra-actions-menu {
background: white;
padding: 0px;
list-style: none;
position: absolute;
right: -7px;
margin-top: -24px;
border: 1px solid #d0d0d0;
background: #fafafa;
right: 0px;
margin-top: -20px;
background: $primary-color;
box-shadow: 0px 1px 1px 2px rgba(0, 0, 0, 0.04);
z-index: 100;
display: none;
min-width: 12em;
&.open {
border-radius: 3px 0 3px 3px;
display: block;
}
li {
margin: 0;
a {
color: white;
float: none;
display: block;
margin: 0;
padding: 5px 10px;
border: none;
border: 0;
&:hover {
background: #ccc;
background: lighten($primary-color, 20%);
}
}
}
}
span.actions {
.extra-actions-menu {
margin-top: 2px;
margin-top: 0px;
top: 100%;
}
}