mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 17:24:59 -06:00
68457f5636
Adds a new menu item to panels, Copy to Clipboard, that will both copy the panel json to the clipboard and temporarily store the panel object in the browsers window object. The temporarily stored panel object are available in Add Panel from any dashboard for as long you don't refresh the browser. Fixes #10248, #1004
22 lines
394 B
SCSS
22 lines
394 B
SCSS
// Icon Sizes
|
|
// -------------------------
|
|
|
|
/* makes the font 33% larger relative to the icon container */
|
|
.#{$fa-css-prefix}-lg {
|
|
font-size: (4em / 3);
|
|
line-height: (3em / 4);
|
|
vertical-align: -15%;
|
|
}
|
|
.#{$fa-css-prefix}-2x {
|
|
font-size: 2em !important;
|
|
}
|
|
.#{$fa-css-prefix}-3x {
|
|
font-size: 3em;
|
|
}
|
|
.#{$fa-css-prefix}-4x {
|
|
font-size: 4em;
|
|
}
|
|
.#{$fa-css-prefix}-5x {
|
|
font-size: 5em;
|
|
}
|