Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
27d6492f
Commit
27d6492f
authored
Aug 15, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ux: removed custom scrollbar look
parent
521c33a7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 additions
and
43 deletions
+1
-43
public/app/partials/dashboard.html
+1
-1
public/sass/_grafana.scss
+0
-1
public/sass/components/_scrollbar.scss
+0
-41
No files found.
public/app/partials/dashboard.html
View file @
27d6492f
<div
dash-class
ng-if=
"dashboard"
>
<dashnav
dashboard=
"dashboard"
></dashnav>
<div
class=
"dashboard-container"
>
<div
class=
"dashboard-container
scroll-canvas
"
>
<div
dash-editor-view
class=
"dash-edit-view"
></div>
<div
class=
"clearfix"
></div>
...
...
public/sass/_grafana.scss
View file @
27d6492f
...
...
@@ -60,7 +60,6 @@
@import
"components/filter-controls"
;
@import
"components/filter-list"
;
@import
"components/filter-table"
;
@import
"components/scrollbar"
;
@import
"components/old_stuff"
;
@import
"components/typeahead"
;
@import
"components/modals"
;
...
...
public/sass/components/_scrollbar.scss
deleted
100644 → 0
View file @
521c33a7
//
// Srollbars
//
::-webkit-scrollbar
{
width
:
8px
;
height
:
8px
;
}
::-webkit-scrollbar:hover
{
height
:
8px
;
}
::-webkit-scrollbar-button:start:decrement
,
::-webkit-scrollbar-button:end:increment
{
display
:
none
;
}
::-webkit-scrollbar-button:horizontal:decrement
{
display
:
none
;
}
::-webkit-scrollbar-button:horizontal:increment
{
display
:
none
;
}
::-webkit-scrollbar-button:vertical:decrement
{
display
:
none
;
}
::-webkit-scrollbar-button:vertical:increment
{
display
:
none
;
}
::-webkit-scrollbar-button:horizontal:decrement:active
{
background-image
:
none
;
}
::-webkit-scrollbar-button:horizontal:increment:active
{
background-image
:
none
;
}
::-webkit-scrollbar-button:vertical:decrement:active
{
background-image
:
none
;
}
::-webkit-scrollbar-button:vertical:increment:active
{
background-image
:
none
;
}
::-webkit-scrollbar-track-piece
{
background-color
:
transparent
;
}
::-webkit-scrollbar-thumb:vertical
{
height
:
50px
;
background
:
-webkit-gradient
(
linear
,
left
top
,
right
top
,
color-stop
(
0%
,
$scrollbarBackground
)
,
color-stop
(
100%
,
$scrollbarBackground2
));
border
:
1px
solid
$scrollbarBorder
;
border-top
:
1px
solid
$scrollbarBorder
;
border-left
:
1px
solid
$scrollbarBorder
;
}
::-webkit-scrollbar-thumb:horizontal
{
width
:
50px
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0%
,
$scrollbarBackground
)
,
color-stop
(
100%
,
$scrollbarBackground2
));
border
:
1px
solid
$scrollbarBorder
;
border-top
:
1px
solid
$scrollbarBorder
;
border-left
:
1px
solid
$scrollbarBorder
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment