-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path_controls.scss
More file actions
86 lines (69 loc) · 1.89 KB
/
_controls.scss
File metadata and controls
86 lines (69 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@if not $compat {
@include button-skin(
('Button',
'.nt-button')
);
@include activity-indicator-skin(
('ActivityIndicator',
'.nt-activity-indicator')
);
@include segmented-bar-skin(
('SegmentedBar',
'.nt-segmented-bar')
);
@include progress-skin(
('Progress',
'.nt-progress')
);
@include slider-skin(
('Slider',
'.nt-slider')
);
@include search-bar-skin(
('SearchBar',
'.nt-search-bar')
);
@include switch-skin(
('Switch',
'.nt-switch')
);
@include tab-view-skin(
('TabView',
'.nt-tab-view')
);
@include tabs-skin();
@include list-view-skin(
('ListView',
'RadListView',
'.nt-list-view')
);
@include side-drawer-skin(
('RadSideDrawer',
'.nt-drawer')
);
// Forms
@include form-fields-skin();
@include input-component-skin(
('.nt-input')
);
@include action-bar-skin(
('ActionBar',
'.nt-action-bar'),
('Label',
'Button',
'.nt-action-bar__item')
);
} @else {
@include button-skin('.btn');
@include activity-indicator-skin('.activity-indicator');
@include segmented-bar-skin('.segmented-bar');
@include progress-skin('.progress');
@include slider-skin('.slider');
@include switch-skin('.switch');
@include tab-view-skin('.tab-view');
@include list-view-skin('.list-group');
@include side-drawer-skin('.side-drawer');
@include form-fields-skin();
@include input-component-skin('.input-field');
@include action-bar-skin('.action-bar', '.action-item');
}