@northdata/fomantic-ui 2.9.401 → 2.9.403
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.
- package/lib/semantic-ui/dist/components/button.css +15 -15
- package/lib/semantic-ui/dist/components/button.min.css +1 -1
- package/lib/semantic-ui/dist/components/card.css +2 -2
- package/lib/semantic-ui/dist/components/card.min.css +1 -1
- package/lib/semantic-ui/dist/components/dropdown.css +4 -4
- package/lib/semantic-ui/dist/components/dropdown.min.css +1 -1
- package/lib/semantic-ui/dist/components/form.css +4 -11
- package/lib/semantic-ui/dist/components/form.min.css +1 -1
- package/lib/semantic-ui/dist/components/grid.css +1 -1
- package/lib/semantic-ui/dist/components/grid.min.css +1 -1
- package/lib/semantic-ui/dist/components/header.css +18 -18
- package/lib/semantic-ui/dist/components/header.min.css +1 -1
- package/lib/semantic-ui/dist/components/icon.css +12 -12
- package/lib/semantic-ui/dist/components/icon.min.css +1 -1
- package/lib/semantic-ui/dist/components/input.css +11 -11
- package/lib/semantic-ui/dist/components/input.min.css +1 -1
- package/lib/semantic-ui/dist/components/label.css +54 -54
- package/lib/semantic-ui/dist/components/label.min.css +1 -1
- package/lib/semantic-ui/dist/components/loader.css +3 -3
- package/lib/semantic-ui/dist/components/loader.min.css +1 -1
- package/lib/semantic-ui/dist/components/menu.css +1 -1
- package/lib/semantic-ui/dist/components/menu.min.css +1 -1
- package/lib/semantic-ui/dist/components/message.css +2 -2
- package/lib/semantic-ui/dist/components/message.min.css +1 -1
- package/lib/semantic-ui/dist/components/popup.css +3 -3
- package/lib/semantic-ui/dist/components/popup.min.css +1 -1
- package/lib/semantic-ui/dist/components/search.css +2 -2
- package/lib/semantic-ui/dist/components/search.min.css +1 -1
- package/lib/semantic-ui/dist/components/segment.css +14 -14
- package/lib/semantic-ui/dist/components/segment.min.css +1 -1
- package/lib/semantic-ui/dist/components/tab.css +1 -1
- package/lib/semantic-ui/dist/components/tab.min.css +1 -1
- package/lib/semantic-ui/dist/components/table.css +1 -1
- package/lib/semantic-ui/dist/components/table.min.css +1 -1
- package/lib/semantic-ui/dist/less/colors.less +623 -0
- package/lib/semantic-ui/dist/less/default/reset.variables +3 -0
- package/lib/semantic-ui/dist/less/default/site.variables +1547 -0
- package/lib/semantic-ui/dist/less/default/variation.variables +796 -0
- package/lib/semantic-ui/dist/less/site/reset.variables +3 -0
- package/lib/semantic-ui/dist/less/site/site.variables +68 -0
- package/lib/semantic-ui/dist/less/site/variation.variables +792 -0
- package/lib/semantic-ui/dist/less/theme.less +22 -0
- package/lib/semantic-ui/dist/semantic-packed.css +148 -156
- package/lib/semantic-ui/dist/semantic.css +148 -156
- package/lib/semantic-ui/dist/semantic.full.css +505 -505
- package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
- package/lib/semantic-ui/dist/semantic.min.css +17 -17
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/*******************************
|
|
2
|
+
User Global Variables
|
|
3
|
+
*******************************/
|
|
4
|
+
|
|
5
|
+
// Conditionally import custom element variation compilation enablers.
|
|
6
|
+
// These custom enablers override the default theme enablers (where almost everything is enabled).
|
|
7
|
+
// @fullFeatured is set in the gulp build settings as global variable.
|
|
8
|
+
// For a production build @fullFeatured should be set to false or should not be set at all.
|
|
9
|
+
// For a development build @fullFeatured can be set to include all variations of all elements.
|
|
10
|
+
@variationFile: if(@fullFeatured, "", "variation.variables");
|
|
11
|
+
@import (optional) "@{variationFile}";
|
|
12
|
+
|
|
13
|
+
@nd-blue: rgb(0, 115, 136);
|
|
14
|
+
@nd-dark-blue: rgb(41, 71, 85);
|
|
15
|
+
@nd-light-grey: rgb(230, 229, 233);
|
|
16
|
+
@nd-grey: rgb(163, 179, 192);
|
|
17
|
+
@nd-green: rgb(129, 176, 140);
|
|
18
|
+
@nd-olive: rgb(160, 176, 108);
|
|
19
|
+
@nd-violet: rgb(148, 97, 172);
|
|
20
|
+
@nd-light-blue: rgb(127, 181, 194);
|
|
21
|
+
|
|
22
|
+
// Used for backgrounds
|
|
23
|
+
@nd-white: rgb(245, 245, 245);
|
|
24
|
+
|
|
25
|
+
@secondaryColor: @nd-dark-blue;
|
|
26
|
+
@blue: @nd-blue;
|
|
27
|
+
@green: @nd-green;
|
|
28
|
+
@olive: @nd-olive;
|
|
29
|
+
@violet: @nd-violet;
|
|
30
|
+
@teal: @nd-light-blue;
|
|
31
|
+
@grey: @nd-grey;
|
|
32
|
+
|
|
33
|
+
@purple: rgb(175, 102, 144);
|
|
34
|
+
@brown: rgb(175, 150, 102);
|
|
35
|
+
@red: rgb(175, 78, 74);
|
|
36
|
+
|
|
37
|
+
@tealTextColor: @nd-light-blue;
|
|
38
|
+
|
|
39
|
+
@nd-highlight: #1efa46;
|
|
40
|
+
@linkColor: @nd-blue;
|
|
41
|
+
@highlightBackground: @nd-highlight;
|
|
42
|
+
|
|
43
|
+
@importFonts: false;
|
|
44
|
+
@fontName: "Roboto";
|
|
45
|
+
|
|
46
|
+
@supportIE: false;
|
|
47
|
+
|
|
48
|
+
@mono-font: "Roboto Mono", monospace;
|
|
49
|
+
@page-font: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
50
|
+
@header-font: "Josefin Sans", serif;
|
|
51
|
+
@monoFont: @mono-font;
|
|
52
|
+
@pageFont: @page-font;
|
|
53
|
+
@headerFont: @header-font;
|
|
54
|
+
|
|
55
|
+
// Disable google fonts
|
|
56
|
+
@importGoogleFonts: false;
|
|
57
|
+
|
|
58
|
+
@bold: 500; // bold;
|
|
59
|
+
@normal: 300; // normal;
|
|
60
|
+
|
|
61
|
+
@relativeBorderRadius: 0; // @relative4px;
|
|
62
|
+
@absoluteBorderRadius: 0; // @4px;
|
|
63
|
+
@defaultBorderRadius: 0; // @absoluteBorderRadius;
|
|
64
|
+
@headerFontWeight: bold; // @bold;
|
|
65
|
+
@inputPlaceholderColor: @nd-grey; // lighten(@inputColor, 75);
|
|
66
|
+
@inputPlaceholderFocusColor: @nd-grey; // lighten(@inputColor, 45);
|
|
67
|
+
@focusColor: @darkTextColor;
|
|
68
|
+
@inputLineHeight: 1.2142em;
|