material-ui 0.7.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +21 -0
  5. data/README.md +31 -0
  6. data/Rakefile +20 -0
  7. data/lib/material-ui.rb +4 -0
  8. data/material-ui-gem.gemspec +33 -0
  9. data/vendor/assets/javascripts/material-ui.js +1 -0
  10. data/vendor/assets/javascripts/material-ui/components/app-bar.jsx +93 -0
  11. data/vendor/assets/javascripts/material-ui/components/app-canvas.jsx +27 -0
  12. data/vendor/assets/javascripts/material-ui/components/checkbox.jsx +60 -0
  13. data/vendor/assets/javascripts/material-ui/components/date-picker/calendar-month.jsx +59 -0
  14. data/vendor/assets/javascripts/material-ui/components/date-picker/calendar-toolbar.jsx +64 -0
  15. data/vendor/assets/javascripts/material-ui/components/date-picker/calendar.jsx +194 -0
  16. data/vendor/assets/javascripts/material-ui/components/date-picker/date-display.jsx +79 -0
  17. data/vendor/assets/javascripts/material-ui/components/date-picker/date-picker-dialog.jsx +118 -0
  18. data/vendor/assets/javascripts/material-ui/components/date-picker/date-picker.jsx +116 -0
  19. data/vendor/assets/javascripts/material-ui/components/date-picker/day-button.jsx +49 -0
  20. data/vendor/assets/javascripts/material-ui/components/dialog-window.jsx +183 -0
  21. data/vendor/assets/javascripts/material-ui/components/dialog.jsx +54 -0
  22. data/vendor/assets/javascripts/material-ui/components/drop-down-icon.jsx +68 -0
  23. data/vendor/assets/javascripts/material-ui/components/drop-down-menu.jsx +94 -0
  24. data/vendor/assets/javascripts/material-ui/components/enhanced-button.jsx +147 -0
  25. data/vendor/assets/javascripts/material-ui/components/enhanced-switch.jsx +296 -0
  26. data/vendor/assets/javascripts/material-ui/components/enhanced-textarea.jsx +113 -0
  27. data/vendor/assets/javascripts/material-ui/components/flat-button.jsx +46 -0
  28. data/vendor/assets/javascripts/material-ui/components/floating-action-button.jsx +123 -0
  29. data/vendor/assets/javascripts/material-ui/components/font-icon.jsx +23 -0
  30. data/vendor/assets/javascripts/material-ui/components/icon-button.jsx +123 -0
  31. data/vendor/assets/javascripts/material-ui/components/ink-bar.jsx +25 -0
  32. data/vendor/assets/javascripts/material-ui/components/input.jsx +143 -0
  33. data/vendor/assets/javascripts/material-ui/components/left-nav.jsx +105 -0
  34. data/vendor/assets/javascripts/material-ui/components/menu/link-menu-item.jsx +42 -0
  35. data/vendor/assets/javascripts/material-ui/components/menu/menu-item.jsx +105 -0
  36. data/vendor/assets/javascripts/material-ui/components/menu/menu.jsx +325 -0
  37. data/vendor/assets/javascripts/material-ui/components/menu/subheader-menu-item.jsx +18 -0
  38. data/vendor/assets/javascripts/material-ui/components/mixins/classable.js +42 -0
  39. data/vendor/assets/javascripts/material-ui/components/mixins/click-awayable.js +35 -0
  40. data/vendor/assets/javascripts/material-ui/components/mixins/window-listenable.js +23 -0
  41. data/vendor/assets/javascripts/material-ui/components/overlay.jsx +58 -0
  42. data/vendor/assets/javascripts/material-ui/components/paper.jsx +58 -0
  43. data/vendor/assets/javascripts/material-ui/components/radio-button-group.jsx +112 -0
  44. data/vendor/assets/javascripts/material-ui/components/radio-button.jsx +65 -0
  45. data/vendor/assets/javascripts/material-ui/components/raised-button.jsx +102 -0
  46. data/vendor/assets/javascripts/material-ui/components/ripples/circle.jsx +35 -0
  47. data/vendor/assets/javascripts/material-ui/components/ripples/focus-ripple.jsx +40 -0
  48. data/vendor/assets/javascripts/material-ui/components/ripples/touch-ripple.jsx +174 -0
  49. data/vendor/assets/javascripts/material-ui/components/slider.jsx +178 -0
  50. data/vendor/assets/javascripts/material-ui/components/snackbar.jsx +76 -0
  51. data/vendor/assets/javascripts/material-ui/components/svg-icons/drop-down-arrow.jsx +16 -0
  52. data/vendor/assets/javascripts/material-ui/components/svg-icons/navigation-chevron-left.jsx +16 -0
  53. data/vendor/assets/javascripts/material-ui/components/svg-icons/navigation-chevron-right.jsx +17 -0
  54. data/vendor/assets/javascripts/material-ui/components/svg-icons/navigation-menu.jsx +16 -0
  55. data/vendor/assets/javascripts/material-ui/components/svg-icons/svg-icon.jsx +23 -0
  56. data/vendor/assets/javascripts/material-ui/components/svg-icons/toggle-check-box-checked.jsx +16 -0
  57. data/vendor/assets/javascripts/material-ui/components/svg-icons/toggle-check-box-outline-blank.jsx +16 -0
  58. data/vendor/assets/javascripts/material-ui/components/svg-icons/toggle-radio-button-off.jsx +16 -0
  59. data/vendor/assets/javascripts/material-ui/components/svg-icons/toggle-radio-button-on.jsx +16 -0
  60. data/vendor/assets/javascripts/material-ui/components/table-header.jsx +50 -0
  61. data/vendor/assets/javascripts/material-ui/components/table-rows-item.jsx +31 -0
  62. data/vendor/assets/javascripts/material-ui/components/table-rows.jsx +57 -0
  63. data/vendor/assets/javascripts/material-ui/components/tabs/tab.jsx +38 -0
  64. data/vendor/assets/javascripts/material-ui/components/tabs/tabTemplate.jsx +15 -0
  65. data/vendor/assets/javascripts/material-ui/components/tabs/tabs.jsx +96 -0
  66. data/vendor/assets/javascripts/material-ui/components/text-field.jsx +215 -0
  67. data/vendor/assets/javascripts/material-ui/components/toggle.jsx +62 -0
  68. data/vendor/assets/javascripts/material-ui/components/toolbar-group.jsx +28 -0
  69. data/vendor/assets/javascripts/material-ui/components/toolbar.jsx +21 -0
  70. data/vendor/assets/javascripts/material-ui/components/tooltip.jsx +58 -0
  71. data/vendor/assets/javascripts/material-ui/components/transition-groups/slide-in.jsx +48 -0
  72. data/vendor/assets/javascripts/material-ui/components/utils/css-event.js +52 -0
  73. data/vendor/assets/javascripts/material-ui/components/utils/date-time.js +132 -0
  74. data/vendor/assets/javascripts/material-ui/components/utils/dom.js +71 -0
  75. data/vendor/assets/javascripts/material-ui/components/utils/events.js +34 -0
  76. data/vendor/assets/javascripts/material-ui/components/utils/key-code.js +10 -0
  77. data/vendor/assets/javascripts/material-ui/components/utils/key-line.js +13 -0
  78. data/vendor/assets/javascripts/material-ui/components/utils/unique-id.js +7 -0
  79. data/vendor/assets/stylesheets/material-ui.less +2 -0
  80. data/vendor/assets/stylesheets/material-ui/components.less +5 -0
  81. data/vendor/assets/stylesheets/material-ui/components/app-bar.less +37 -0
  82. data/vendor/assets/stylesheets/material-ui/components/card.less +20 -0
  83. data/vendor/assets/stylesheets/material-ui/components/checkbox.less +66 -0
  84. data/vendor/assets/stylesheets/material-ui/components/components.less +37 -0
  85. data/vendor/assets/stylesheets/material-ui/components/date-picker/calendar-month.less +11 -0
  86. data/vendor/assets/stylesheets/material-ui/components/date-picker/calendar-toolbar.less +23 -0
  87. data/vendor/assets/stylesheets/material-ui/components/date-picker/calendar.less +59 -0
  88. data/vendor/assets/stylesheets/material-ui/components/date-picker/date-display.less +84 -0
  89. data/vendor/assets/stylesheets/material-ui/components/date-picker/date-picker-dialog.less +18 -0
  90. data/vendor/assets/stylesheets/material-ui/components/date-picker/date-picker.less +9 -0
  91. data/vendor/assets/stylesheets/material-ui/components/date-picker/day-button.less +35 -0
  92. data/vendor/assets/stylesheets/material-ui/components/dialog-window.less +42 -0
  93. data/vendor/assets/stylesheets/material-ui/components/dialog.less +10 -0
  94. data/vendor/assets/stylesheets/material-ui/components/drop-down-icon.less +43 -0
  95. data/vendor/assets/stylesheets/material-ui/components/drop-down-menu.less +77 -0
  96. data/vendor/assets/stylesheets/material-ui/components/enhanced-button.less +24 -0
  97. data/vendor/assets/stylesheets/material-ui/components/enhanced-switch.less +52 -0
  98. data/vendor/assets/stylesheets/material-ui/components/enhanced-textarea.less +16 -0
  99. data/vendor/assets/stylesheets/material-ui/components/flat-button.less +93 -0
  100. data/vendor/assets/stylesheets/material-ui/components/floating-action-button.less +95 -0
  101. data/vendor/assets/stylesheets/material-ui/components/font-icon.less +6 -0
  102. data/vendor/assets/stylesheets/material-ui/components/icon-button.less +46 -0
  103. data/vendor/assets/stylesheets/material-ui/components/ink-bar.less +9 -0
  104. data/vendor/assets/stylesheets/material-ui/components/input.less +186 -0
  105. data/vendor/assets/stylesheets/material-ui/components/left-nav.less +31 -0
  106. data/vendor/assets/stylesheets/material-ui/components/menu-item.less +69 -0
  107. data/vendor/assets/stylesheets/material-ui/components/menu.less +50 -0
  108. data/vendor/assets/stylesheets/material-ui/components/overlay.less +21 -0
  109. data/vendor/assets/stylesheets/material-ui/components/paper.less +59 -0
  110. data/vendor/assets/stylesheets/material-ui/components/radio-button.less +67 -0
  111. data/vendor/assets/stylesheets/material-ui/components/raised-button.less +132 -0
  112. data/vendor/assets/stylesheets/material-ui/components/ripples/circle.less +31 -0
  113. data/vendor/assets/stylesheets/material-ui/components/ripples/focus-ripple.less +30 -0
  114. data/vendor/assets/stylesheets/material-ui/components/ripples/touch-ripple.less +9 -0
  115. data/vendor/assets/stylesheets/material-ui/components/slider.less +163 -0
  116. data/vendor/assets/stylesheets/material-ui/components/snackbar.less +44 -0
  117. data/vendor/assets/stylesheets/material-ui/components/subheader.less +17 -0
  118. data/vendor/assets/stylesheets/material-ui/components/svg-icon.less +11 -0
  119. data/vendor/assets/stylesheets/material-ui/components/table.less +46 -0
  120. data/vendor/assets/stylesheets/material-ui/components/tabs.less +41 -0
  121. data/vendor/assets/stylesheets/material-ui/components/text-field.less +168 -0
  122. data/vendor/assets/stylesheets/material-ui/components/toggle.less +83 -0
  123. data/vendor/assets/stylesheets/material-ui/components/toolbar.less +95 -0
  124. data/vendor/assets/stylesheets/material-ui/components/tooltip.less +73 -0
  125. data/vendor/assets/stylesheets/material-ui/components/transition-groups/slide-in.less +92 -0
  126. data/vendor/assets/stylesheets/material-ui/core/base.less +31 -0
  127. data/vendor/assets/stylesheets/material-ui/core/core.less +4 -0
  128. data/vendor/assets/stylesheets/material-ui/core/keylines.less +29 -0
  129. data/vendor/assets/stylesheets/material-ui/core/layouts.less +12 -0
  130. data/vendor/assets/stylesheets/material-ui/core/typography.less +158 -0
  131. data/vendor/assets/stylesheets/material-ui/mixins/clearfix.less +22 -0
  132. data/vendor/assets/stylesheets/material-ui/mixins/mixins.less +3 -0
  133. data/vendor/assets/stylesheets/material-ui/mixins/no-wrap.less +3 -0
  134. data/vendor/assets/stylesheets/material-ui/mixins/transitions.less +17 -0
  135. data/vendor/assets/stylesheets/material-ui/resets/normalize.css +430 -0
  136. data/vendor/assets/stylesheets/material-ui/resets/typography-resets.less +34 -0
  137. data/vendor/assets/stylesheets/material-ui/scaffolding.less +10 -0
  138. data/vendor/assets/stylesheets/material-ui/variables/colors.less +285 -0
  139. data/vendor/assets/stylesheets/material-ui/variables/custom-variables.less +163 -0
  140. data/vendor/assets/stylesheets/material-ui/variables/media-queries.less +4 -0
  141. data/vendor/assets/stylesheets/material-ui/variables/spacing.less +16 -0
  142. metadata +268 -0
@@ -0,0 +1,83 @@
1
+ .mui-toggle {
2
+ @mui-switch-width: 60px;
3
+
4
+ .mui-toggle-icon {
5
+ @toggle-track-width: 36px;
6
+ @toggle-padding-right: calc(@mui-switch-width - @toggle-track-width);
7
+
8
+ padding: 4px 0px 6px 2px;
9
+ margin-right: @desktop-gutter-mini;
10
+
11
+ .mui-toggle-track {
12
+ .ease-out;
13
+ width: @toggle-track-width;
14
+ height: 14px;
15
+ border-radius: 30px;
16
+ background-color: @toggle-track-off-color;
17
+ }
18
+
19
+ .mui-toggle-thumb {
20
+ .ease-out;
21
+ position: absolute;
22
+ top: 1px;
23
+ left: 2px;
24
+ width: @toggle-size;
25
+ height: @toggle-size;
26
+ line-height: 24px;
27
+ border-radius: 50%;
28
+ background-color: @toggle-thumb-off-color;
29
+
30
+ .mui-paper-container {
31
+ border-radius: 50%;
32
+ }
33
+
34
+ .mui-touch-ripple,
35
+ .mui-focus-ripple-inner {
36
+ width: 200%;
37
+ height: 200%;
38
+ top: -10px;
39
+ left: -10px;
40
+ }
41
+ }
42
+ }
43
+
44
+ &.mui-is-switched {
45
+ .mui-toggle-icon {
46
+ .mui-toggle-track {
47
+ background-color: @toggle-track-on-color;
48
+ }
49
+ .mui-toggle-thumb {
50
+ left: 18px;
51
+ background-color: @toggle-thumb-on-color;
52
+ }
53
+ }
54
+ }
55
+
56
+ &.mui-is-disabled {
57
+ .mui-toggle-icon {
58
+ cursor: default;
59
+ .mui-toggle-track {
60
+ background-color: @toggle-track-disabled-color;
61
+ }
62
+ .mui-toggle-thumb {
63
+ background-color: @toggle-thumb-disabled-color;
64
+ }
65
+ }
66
+ }
67
+
68
+ &.mui-is-required {
69
+ .mui-toggle-icon {
70
+ .mui-toggle-track {
71
+ background-color: @toggle-track-required-color;
72
+ }
73
+
74
+ .mui-toggle-thumb {
75
+ background-color: @toggle-thumb-required-color;
76
+ }
77
+ }
78
+ }
79
+ }
80
+
81
+
82
+
83
+
@@ -0,0 +1,95 @@
1
+ .mui-toolbar {
2
+ background-color: @toolbar-background-color;
3
+ height: @toolbar-height;
4
+ width: 100%;
5
+ padding: 0 @desktop-gutter;
6
+
7
+ .mui-toolbar-group {
8
+ position: relative;
9
+
10
+ .mui-toolbar-title {
11
+ padding-right: @desktop-gutter-less;
12
+ line-height: @toolbar-height;
13
+ }
14
+
15
+ .mui-toolbar-separator {
16
+ background-color: @toolbar-separator-color;
17
+ display: inline-block;
18
+ height: @desktop-gutter-more;
19
+ margin-left: @desktop-gutter;
20
+ position: relative;
21
+ top: ((@toolbar-height - @desktop-gutter-more) / 2);
22
+ width: 1px;
23
+ }
24
+
25
+ .mui-raised-button,
26
+ .mui-flat-button {
27
+ margin: 0 @desktop-gutter;
28
+ margin-top: ((@toolbar-height - @button-height) / 2);
29
+ position: relative;
30
+ }
31
+
32
+ .mui-drop-down-menu {
33
+ color: @light-black;
34
+ display: inline-block;
35
+ margin-right: @desktop-gutter;
36
+
37
+ .mui-menu-control-bg {
38
+ background-color: @toolbar-menu-hover-color;
39
+ border-radius: 0;
40
+ }
41
+
42
+ .mui-menu-control {
43
+ .mui-menu-control-underline {
44
+ display: none;
45
+ }
46
+ }
47
+
48
+ .mui-font-icon {
49
+ &:hover {
50
+ color: @toolbar-icon-color;
51
+ }
52
+ }
53
+ }
54
+
55
+ .mui-font-icon {
56
+ color: @toolbar-icon-color;
57
+ cursor: pointer;
58
+ line-height: @toolbar-height;
59
+ padding-left: @desktop-gutter;
60
+
61
+ &:hover {
62
+ color: @dark-black;
63
+ z-index: 1;
64
+ }
65
+ }
66
+
67
+ &.mui-left {
68
+ float: left;
69
+
70
+ .mui-drop-down-menu, .mui-font-icon, .mui-toolbar-separator, .mui-drop-down-icon {
71
+ float: left;
72
+ }
73
+
74
+ &:first-child {
75
+ margin-left: -24px;
76
+
77
+ .mui-toolbar-title {
78
+ margin-left: 24px;
79
+ }
80
+ }
81
+ }
82
+
83
+ &.mui-right {
84
+ float: right;
85
+
86
+ * {
87
+ vertical-align: top;
88
+ }
89
+
90
+ &:last-child {
91
+ margin-right: -24px;
92
+ }
93
+ }
94
+ }
95
+ }
@@ -0,0 +1,73 @@
1
+ .mui-tooltip {
2
+ position: absolute;
3
+
4
+ font-family: @contentFontFamily;
5
+ font-size: 10px;
6
+ line-height: 22px;
7
+ padding: 0 8px;
8
+ color: @white;
9
+ overflow: hidden;
10
+ top: -10000px;
11
+
12
+ border-radius: 2px;
13
+ user-select: none;
14
+ opacity: 0;
15
+
16
+ transition:
17
+ top 0ms @ease-out-function 450ms,
18
+ transform 450ms @ease-out-function 0ms,
19
+ opacity 450ms @ease-out-function 0ms;
20
+
21
+ .mui-tooltip-label {
22
+ position: relative;
23
+ white-space: nowrap;
24
+ }
25
+
26
+ .mui-tooltip-ripple {
27
+ position: absolute;
28
+ left: 50%;
29
+ top: 0px;
30
+
31
+ transform: translate(-50%, -50%);
32
+ border-radius: 50%;
33
+ background-color: transparent;
34
+
35
+ transition:
36
+ width 0ms @ease-out-function 450ms,
37
+ height 0ms @ease-out-function 450ms,
38
+ background-color 450ms @ease-out-function 0ms;
39
+ }
40
+
41
+ &.mui-is-shown {
42
+ top: -16px;
43
+ opacity: 1;
44
+ transform: translate3d(0px, 16px, 0px);
45
+
46
+ transition:
47
+ top 0ms @ease-out-function 0ms,
48
+ transform 450ms @ease-out-function 0ms,
49
+ opacity 450ms @ease-out-function 0ms;
50
+
51
+ .mui-tooltip-ripple {
52
+ background-color: @grey-600;
53
+ transition:
54
+ width 450ms @ease-out-function 0ms,
55
+ height 450ms @ease-out-function 0ms,
56
+ background-color 450ms @ease-out-function 0ms;
57
+ }
58
+
59
+ }
60
+
61
+ &.mui-is-touch {
62
+ font-size: 14px;
63
+ line-height: 44px;
64
+ padding: 0 16px;
65
+
66
+ &.mui-is-shown {
67
+ .mui-tooltip-ripple {
68
+ height: 105px;
69
+ width: 105px;
70
+ }
71
+ }
72
+ }
73
+ }
@@ -0,0 +1,92 @@
1
+ .mui-transition-slide-in {
2
+ position: relative;
3
+ overflow: hidden;
4
+ height: 100%;
5
+
6
+ .mui-transition-slide-in-child {
7
+ position: absolute;
8
+ height: 100%;
9
+ width: 100%;
10
+ top: 0px;
11
+ left: 0px;
12
+ .ease-out();
13
+ }
14
+
15
+ .mui-transition-slide-in-enter {
16
+ opacity: 0;
17
+ }
18
+
19
+ .mui-transition-slide-in-enter-active {
20
+ opacity: 1;
21
+ }
22
+
23
+ .mui-transition-slide-in-leave {
24
+ opacity: 1;
25
+ }
26
+
27
+ .mui-transition-slide-in-leave-active {
28
+ opacity: 0;
29
+ }
30
+
31
+ &.mui-is-left {
32
+ .mui-transition-slide-in-enter {
33
+ transform: translate3d(100%,0,0);
34
+ }
35
+ .mui-transition-slide-in-enter-active {
36
+ transform: translate3d(0,0,0);
37
+ }
38
+ .mui-transition-slide-in-leave {
39
+ transform: translate3d(0,0,0);
40
+ }
41
+ .mui-transition-slide-in-leave-active {
42
+ transform: translate3d(-100%,0,0);
43
+ }
44
+
45
+ }
46
+
47
+ &.mui-is-right {
48
+ .mui-transition-slide-in-enter {
49
+ transform: translate3d(-100%,0,0);
50
+ }
51
+ .mui-transition-slide-in-enter-active {
52
+ transform: translate3d(0,0,0);
53
+ }
54
+ .mui-transition-slide-in-leave {
55
+ transform: translate3d(0,0,0);
56
+ }
57
+ .mui-transition-slide-in-leave-active {
58
+ transform: translate3d(100%,0,0);
59
+ }
60
+ }
61
+
62
+ &.mui-is-up {
63
+ .mui-transition-slide-in-enter {
64
+ transform: translate3d(0,100%,0);
65
+ }
66
+ .mui-transition-slide-in-enter-active {
67
+ transform: translate3d(0,0,0);
68
+ }
69
+ .mui-transition-slide-in-leave {
70
+ transform: translate3d(0,0,0);
71
+ }
72
+ .mui-transition-slide-in-leave-active {
73
+ transform: translate3d(0,-100%,0);
74
+ }
75
+ }
76
+
77
+ &.mui-is-down {
78
+ .mui-transition-slide-in-enter {
79
+ transform: translate3d(0,-100%,0);
80
+ }
81
+ .mui-transition-slide-in-enter-active {
82
+ transform: translate3d(0,0,0);
83
+ }
84
+ .mui-transition-slide-in-leave {
85
+ transform: translate3d(0,0,0);
86
+ }
87
+ .mui-transition-slide-in-leave-active {
88
+ transform: translate3d(0,100%,0);
89
+ }
90
+ }
91
+
92
+ }
@@ -0,0 +1,31 @@
1
+ // Reset the box-sizing
2
+ //
3
+ // Heads up! This reset may cause conflicts with some third-party widgets.
4
+ // For recommendations on resolving such conflicts, see
5
+ // http://getbootstrap.com/getting-started/#third-box-sizing
6
+ * {
7
+ box-sizing: border-box;
8
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
9
+ }
10
+ *:before,
11
+ *:after {
12
+ box-sizing: border-box;
13
+ }
14
+
15
+ html,
16
+ body {
17
+ height: 100%;
18
+ width: 100%;
19
+ }
20
+
21
+ html {
22
+ -webkit-font-smoothing: antialiased;
23
+ color: @body-text-color;
24
+ font-family: @contentFontFamily;
25
+ background-color: @canvas-color;
26
+ }
27
+
28
+ hr {
29
+ border: none;
30
+ border-bottom: solid 1px @border-color;
31
+ }
@@ -0,0 +1,4 @@
1
+ @import "base.less";
2
+ @import "typography.less";
3
+ @import "layouts.less";
4
+ @import "keylines.less";
@@ -0,0 +1,29 @@
1
+ .mui-keywidth(@width) {
2
+ width: (@width * @desktop-keyline-increment);
3
+ }
4
+
5
+ .mui-keyheight(@height) {
6
+ height: (@height * @desktop-keyline-increment);
7
+ }
8
+
9
+ .mui-key-width-1 { .mui-keywidth(1); }
10
+ .mui-key-width-2 { .mui-keywidth(2); }
11
+ .mui-key-width-3 { .mui-keywidth(3); }
12
+ .mui-key-width-4 { .mui-keywidth(4); }
13
+ .mui-key-width-5 { .mui-keywidth(5); }
14
+ .mui-key-width-6 { .mui-keywidth(6); }
15
+ .mui-key-width-7 { .mui-keywidth(7); }
16
+ .mui-key-width-8 { .mui-keywidth(8); }
17
+ .mui-key-width-9 { .mui-keywidth(9); }
18
+ .mui-key-width-10 { .mui-keywidth(10); }
19
+
20
+ .mui-key-height-1 { .mui-keyheight(1); }
21
+ .mui-key-height-2 { .mui-keyheight(2); }
22
+ .mui-key-height-3 { .mui-keyheight(3); }
23
+ .mui-key-height-4 { .mui-keyheight(4); }
24
+ .mui-key-height-5 { .mui-keyheight(5); }
25
+ .mui-key-height-6 { .mui-keyheight(6); }
26
+ .mui-key-height-7 { .mui-keyheight(7); }
27
+ .mui-key-height-8 { .mui-keyheight(8); }
28
+ .mui-key-height-9 { .mui-keyheight(9); }
29
+ .mui-key-height-10 { .mui-keyheight(10); }
@@ -0,0 +1,12 @@
1
+ .mui-predefined-layout-1 {
2
+
3
+ .mui-app-content-canvas {
4
+ padding-top: (@app-bar-height);
5
+ }
6
+
7
+ .mui-app-bar {
8
+ position: fixed;
9
+ height: @app-bar-height;
10
+ }
11
+
12
+ }
@@ -0,0 +1,158 @@
1
+ .mui-text-full-black { color: @full-black; }
2
+ .mui-text-dark-black { color: @dark-black; }
3
+ .mui-text-light-black { color: @light-black; }
4
+ .mui-text-min-black { color: @min-black; }
5
+ .mui-text-full-white { color: @full-white; }
6
+ .mui-text-dark-white { color: @dark-white; }
7
+ .mui-text-light-white { color: @light-white; }
8
+
9
+ .mui-font-weight-light { font-weight: 300 }
10
+ .mui-font-weight-normal { font-weight: 400 }
11
+ .mui-font-weight-medium { font-weight: 500 }
12
+
13
+ /* Type Styles */
14
+ .mui-font-style-display-4 {
15
+ font-size: 112px;
16
+ line-height: 128px;
17
+ letter-spacing: -7px;
18
+ padding-top: 17px;
19
+ margin-bottom: 15px;
20
+ .mui-font-weight-light;
21
+ .mui-text-light-black;
22
+ }
23
+
24
+ .mui-font-style-display-3 {
25
+ font-size: 56px;
26
+ line-height: 64px;
27
+ letter-spacing: -2px;
28
+ padding-top: 8px;
29
+ margin-bottom: 28px;
30
+ .mui-font-weight-normal;
31
+ .mui-text-light-black;
32
+ }
33
+
34
+ .mui-font-style-display-2 {
35
+ font-size: 45px;
36
+ line-height: 48px;
37
+ margin-bottom: 11px;
38
+ letter-spacing: -1px;
39
+ .mui-font-weight-normal;
40
+ .mui-text-light-black;
41
+ }
42
+
43
+ .mui-font-style-display-1 {
44
+ font-size: 34px;
45
+ line-height: 40px;
46
+ padding-top: 8px;
47
+ margin-bottom: 12px;
48
+ letter-spacing: -1px;
49
+ .mui-font-weight-normal;
50
+ .mui-text-light-black;
51
+ }
52
+
53
+ .mui-font-style-headline {
54
+ font-size: 24px;
55
+ line-height: 32px;
56
+ padding-top: 16px;
57
+ margin-bottom: 12px;
58
+ letter-spacing: 0;
59
+ .mui-font-weight-normal;
60
+ .mui-text-dark-black;
61
+ }
62
+
63
+ .mui-font-style-title {
64
+ font-size: 20px;
65
+ line-height: 28px;
66
+ padding-top: 19px;
67
+ margin-bottom: 13px;
68
+ letter-spacing: 0;
69
+ .mui-font-weight-medium;
70
+ .mui-text-dark-black;
71
+ }
72
+
73
+ .mui-font-style-subhead-2 {
74
+ font-size: 15px;
75
+ line-height: 28px;
76
+ padding-top: 2px;
77
+ margin-bottom: 10px;
78
+ letter-spacing: 0;
79
+ .mui-font-weight-normal;
80
+ .mui-text-dark-black;
81
+ }
82
+
83
+ .mui-font-style-subhead-1 {
84
+ .mui-font-style-subhead-2;
85
+ line-height: 24px;
86
+ padding-top: 3px;
87
+ margin-bottom: 13px;
88
+ .mui-text-dark-black;
89
+ }
90
+
91
+ .mui-font-style-body-2 {
92
+ font-size: 13px;
93
+ line-height: 24px;
94
+ padding-top: 4px;
95
+ margin-bottom: 12px;
96
+ letter-spacing: 0;
97
+ .mui-font-weight-medium;
98
+ .mui-text-dark-black;
99
+ }
100
+
101
+ .mui-font-style-body-1 {
102
+ font-size: 13px;
103
+ line-height: 20px;
104
+ padding-top: 6px;
105
+ margin-bottom: 14px;
106
+ letter-spacing: 0;
107
+ .mui-font-weight-normal;
108
+ .mui-text-dark-black;
109
+ }
110
+
111
+ .mui-font-style-caption {
112
+ font-size: 12px;
113
+ line-height: 20px;
114
+ padding-top: 6px;
115
+ margin-bottom: 14px;
116
+ letter-spacing: 0;
117
+ .mui-font-weight-normal;
118
+ .mui-text-light-black;
119
+ }
120
+
121
+ .mui-font-style-menu {
122
+ font-size: 13px;
123
+ line-height: 20px;
124
+ padding-top: 6px;
125
+ margin-bottom: 14px;
126
+ letter-spacing: 0;
127
+ .mui-font-weight-medium;
128
+ .mui-text-dark-black;
129
+ }
130
+
131
+ .mui-font-style-button {
132
+ font-size: 14px;
133
+ line-height: 20px;
134
+ padding-top: 5px;
135
+ margin-bottom: 15px;
136
+ letter-spacing: 0;
137
+ text-transform: uppercase;
138
+ .mui-font-weight-medium;
139
+ .mui-text-dark-black;
140
+ }
141
+
142
+ /* General HTML Typography */
143
+ body {
144
+ font-size: 13px;
145
+ line-height: 20px;
146
+ }
147
+
148
+ h1 { .mui-font-style-display-2; }
149
+ h2 { .mui-font-style-display-1; }
150
+ h3 { .mui-font-style-headline; }
151
+ h4 { .mui-font-style-title; }
152
+ h5 { .mui-font-style-subhead-1; }
153
+ h6 { .mui-font-style-body-2; }
154
+ p { .mui-font-style-body-1; }
155
+ hr {
156
+ margin-top: 0;
157
+ margin-bottom: 18px;
158
+ }