Skip to content
This repository was archived by the owner on Aug 4, 2019. It is now read-only.

Commit c547aa9

Browse files
Merge pull request #10 from SlateFoundation/development
Release: slate-theme v2.1.1
2 parents a5a44d5 + 01d4638 commit c547aa9

File tree

8 files changed

+50
-2
lines changed

8 files changed

+50
-2
lines changed

overrides/tree/Panel.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Ext.define('SlateTheme.tree.Panel', {
2+
override: 'Ext.tree.Panel',
3+
4+
useArrows: false,
5+
lines: false
6+
});

resources/images/tree/minus.svg

Lines changed: 7 additions & 0 deletions
Loading

resources/images/tree/plus.svg

Lines changed: 7 additions & 0 deletions
Loading

sass/src/button/Button.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@include glyph-color('danger', $danger-color);
22
@include glyph-color('success', $success-color);
3+
@include glyph-color('accent', $accent-color);
34

45
.x-btn {
56
}

sass/src/grid/feature/Grouping.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,12 @@
77
small.pull-right {
88
margin-top: .0625em;
99
}
10+
11+
.has-small-group-headers & {
12+
color: $muted-color;
13+
font-size: smaller;
14+
letter-spacing: .5px;
15+
padding-top: 1em;
16+
text-transform: uppercase;
17+
}
1018
}

sass/src/panel/Panel.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.x-panel-body {
2+
.empty-text {
3+
padding: 1.5em;
4+
text-align: center;
5+
}
6+
}

sass/src/tree/View.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,16 @@
1414

1515
.x-tree-icon-leaf {
1616
background-image: inline-image('tree/file.svg');
17+
}
18+
19+
.x-tree-no-lines {
20+
.x-tree-expander {
21+
background-image: inline-image('tree/plus.svg');
22+
background-position: center;
23+
background-size: 11px;
24+
}
25+
26+
.x-grid-tree-node-expanded .x-tree-expander {
27+
background-image: inline-image('tree/minus.svg');
28+
}
1729
}

sass/var/toolbar/Toolbar.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
$toolbar-background-color: #e9e9e9 !default;
2-
$toolbar-vertical-spacing: 5px !default;
1+
$toolbar-background-color: #e9e9e9 !default;
2+
$toolbar-separator-color: darken($toolbar-background-color, 15) !default;
3+
$toolbar-vertical-spacing: 5px !default;

0 commit comments

Comments
 (0)