Elastic: Support "options" button in dialog footer

pull/6218/head
Aleksander Machniak 7 years ago
parent a9c7ef17bd
commit adaa3bc898

@ -101,6 +101,7 @@
display: flex;
justify-content: flex-end;
a.btn-link,
button {
.overflow-ellipsis;
min-width: 5rem;
@ -110,6 +111,30 @@
margin-right: 0;
}
}
a.btn-link {
padding-right: 0;
padding-left: 0;
&.options:before {
// this icon is for mobile version
&:extend(.font-icon-class);
content: @fa-var-cog;
margin: 0;
width: 100%;
height: 1.25em;
display: none !important;
}
&.options:after {
// this icon is for non-mobile version
&:extend(.font-icon-class);
content: @fa-var-caret-down;
display: inline;
float: none;
margin-left: .25rem;
}
}
}
}
@ -203,6 +228,20 @@
opacity: .5;
}
}
a.btn-link {
color: @color-toolbar-button;
margin: 0;
text-decoration: none;
&.options:before {
display: block !important;
}
&.options:after {
display: none;
}
}
}
}
}

Loading…
Cancel
Save