mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
Added vertical ellipses, played with box shadows and borders and such. Ellipses need to fade to Opacity 0 when menu is open.
This commit is contained in:
parent
3e712178cc
commit
4e15e61b39
@ -1,9 +1,10 @@
|
||||
<div class="dash-row-menu-container" ng-hide="dashboard.meta.fullscreen">
|
||||
<div class="dash-row-menu-container" id="dash-row-menu-container-id" ng-hide="dashboard.meta.fullscreen">
|
||||
<ul class="dash-row-menu" role="menu" aria-labelledby="drop1">
|
||||
<li>
|
||||
<a ng-click="ctrl.onMenuAddPanel()">
|
||||
<i class="fa fa-plus"></i> Add Panel
|
||||
</a>
|
||||
<i class="icon-gf icon-gf-bulk_action dash-row-menu--affordance" id="dash-row-menu--affordance-id"></i>
|
||||
</li>
|
||||
<li>
|
||||
<a ng-click="ctrl.onMenuRowOptions()">
|
||||
|
@ -114,13 +114,15 @@
|
||||
|
||||
&:hover {
|
||||
left: 0px;
|
||||
z-index: 101;
|
||||
box-shadow: $search-shadow;
|
||||
}
|
||||
}
|
||||
|
||||
.dash-row-menu {
|
||||
list-style: none;
|
||||
li a {
|
||||
display: block;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
color: $text-muted;
|
||||
font-size: $font-size-sm;
|
||||
@ -132,6 +134,16 @@
|
||||
}
|
||||
}
|
||||
|
||||
.dash-row-menu--affordance {
|
||||
float: right;
|
||||
font-size: 130%;
|
||||
margin-top: 7px;
|
||||
color: $text-color-faint;
|
||||
margin-right: -7px;
|
||||
opacity: 1;
|
||||
transition: .30s opacity forwards;
|
||||
}
|
||||
|
||||
// Legacy mode
|
||||
.row-tab {
|
||||
.dropdown-menu-right {
|
||||
|
Loading…
Reference in New Issue
Block a user