@matdata/yasgui 4.6.1 → 4.7.5

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.
@@ -1,122 +1,122 @@
1
- .yasgui {
2
- .autocomplete {
3
- padding: 3px 6px;
4
- margin: 4px 0px;
5
- border: 2px solid #ccc;
6
- width: 100%;
7
- &:hover {
8
- border-color: #bbb;
9
- }
10
- &:focus {
11
- border-color: #337ab7;
12
- background: none;
13
- outline: none;
14
- }
15
- box-sizing: border-box;
16
- transition: border-color ease-in 200ms;
17
- }
18
- .autocompleteWrapper {
19
- width: 100%;
20
- max-width: 700px;
21
- margin-left: 10px;
22
- position: relative;
23
- }
24
- .autocompleteList {
25
- position: absolute;
26
- max-height: 300px;
27
- overflow-y: auto;
28
- z-index: 6;
29
- margin: 0;
30
- margin-top: -4px;
31
- padding: 0;
32
- list-style: none;
33
- background: white;
34
- border: 1px solid #aaa;
35
- box-sizing: border-box;
36
- left: 0;
37
- right: 0;
38
- &:hover {
39
- .autoComplete_result.autoComplete_selected:not(:hover) {
40
- background: unset;
41
- .removeItem {
42
- visibility: hidden;
43
- }
44
- }
45
- }
46
- .autoComplete_result {
47
- cursor: pointer;
48
- padding: 5px 10px;
49
- margin: 0;
50
- overflow: hidden;
51
- display: flex;
52
- transition: background visibility ease-in 200ms;
53
- b {
54
- color: #1f49a3;
55
- }
56
- .autoComplete_highlighted {
57
- font-weight: bold;
58
- }
59
- &.autoComplete_selected {
60
- background: #ccc;
61
- .removeItem {
62
- visibility: visible;
63
- }
64
- }
65
- &:hover {
66
- background: #ccc;
67
- .removeItem {
68
- visibility: visible;
69
- }
70
- }
71
- }
72
- .noResults {
73
- padding: 5px 10px;
74
- margin: 0;
75
- }
76
- .removeItem {
77
- color: #000;
78
- font-size: 15px;
79
- text-shadow: 0 1px 0 #fff;
80
- opacity: 0.5;
81
- font-weight: 700;
82
- text-align: end;
83
- margin-left: auto; // Make sure x always appears at the same place
84
- visibility: hidden;
85
- background: none;
86
- border: none;
87
- cursor: pointer;
88
- margin-right: -10px;
89
- padding-right: 20px;
90
- &:hover {
91
- opacity: 0.8;
92
- color: #1f49a3;
93
- }
94
- }
95
-
96
- &:empty {
97
- display: none;
98
- }
99
- }
100
-
101
- .clearEndpointBtn {
102
- border: 1px solid #d1d1d1;
103
- background-color: #d1d1d1;
104
- color: #505050;
105
- border-radius: 3px;
106
- cursor: pointer;
107
-
108
- padding: 4px 8px;
109
- margin: 4px;
110
-
111
- display: flex;
112
- align-items: center;
113
- justify-content: center;
114
-
115
- opacity: 1;
116
- transition: opacity ease-in 200ms;
117
-
118
- &:hover {
119
- opacity: 0.8;
120
- }
121
- }
122
- }
1
+ .yasgui {
2
+ .autocomplete {
3
+ padding: 3px 6px;
4
+ margin: 4px 0px;
5
+ border: 2px solid #ccc;
6
+ width: 100%;
7
+ &:hover {
8
+ border-color: #bbb;
9
+ }
10
+ &:focus {
11
+ border-color: #337ab7;
12
+ background: none;
13
+ outline: none;
14
+ }
15
+ box-sizing: border-box;
16
+ transition: border-color ease-in 200ms;
17
+ }
18
+ .autocompleteWrapper {
19
+ width: 100%;
20
+ max-width: 700px;
21
+ margin-left: 10px;
22
+ position: relative;
23
+ }
24
+ .autocompleteList {
25
+ position: absolute;
26
+ max-height: 300px;
27
+ overflow-y: auto;
28
+ z-index: 6;
29
+ margin: 0;
30
+ margin-top: -4px;
31
+ padding: 0;
32
+ list-style: none;
33
+ background: white;
34
+ border: 1px solid #aaa;
35
+ box-sizing: border-box;
36
+ left: 0;
37
+ right: 0;
38
+ &:hover {
39
+ .autoComplete_result.autoComplete_selected:not(:hover) {
40
+ background: unset;
41
+ .removeItem {
42
+ visibility: hidden;
43
+ }
44
+ }
45
+ }
46
+ .autoComplete_result {
47
+ cursor: pointer;
48
+ padding: 5px 10px;
49
+ margin: 0;
50
+ overflow: hidden;
51
+ display: flex;
52
+ transition: background visibility ease-in 200ms;
53
+ b {
54
+ color: #1f49a3;
55
+ }
56
+ .autoComplete_highlighted {
57
+ font-weight: bold;
58
+ }
59
+ &.autoComplete_selected {
60
+ background: #ccc;
61
+ .removeItem {
62
+ visibility: visible;
63
+ }
64
+ }
65
+ &:hover {
66
+ background: #ccc;
67
+ .removeItem {
68
+ visibility: visible;
69
+ }
70
+ }
71
+ }
72
+ .noResults {
73
+ padding: 5px 10px;
74
+ margin: 0;
75
+ }
76
+ .removeItem {
77
+ color: #000;
78
+ font-size: 15px;
79
+ text-shadow: 0 1px 0 #fff;
80
+ opacity: 0.5;
81
+ font-weight: 700;
82
+ text-align: end;
83
+ margin-left: auto; // Make sure x always appears at the same place
84
+ visibility: hidden;
85
+ background: none;
86
+ border: none;
87
+ cursor: pointer;
88
+ margin-right: -10px;
89
+ padding-right: 20px;
90
+ &:hover {
91
+ opacity: 0.8;
92
+ color: #1f49a3;
93
+ }
94
+ }
95
+
96
+ &:empty {
97
+ display: none;
98
+ }
99
+ }
100
+
101
+ .clearEndpointBtn {
102
+ border: 1px solid #d1d1d1;
103
+ background-color: #d1d1d1;
104
+ color: #505050;
105
+ border-radius: 3px;
106
+ cursor: pointer;
107
+
108
+ padding: 4px 8px;
109
+ margin: 4px;
110
+
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: center;
114
+
115
+ opacity: 1;
116
+ transition: opacity ease-in 200ms;
117
+
118
+ &:hover {
119
+ opacity: 0.8;
120
+ }
121
+ }
122
+ }
@@ -1,36 +1,36 @@
1
- div.modal-dialog.google-visualization-charteditor-dialog {
2
- height: unset;
3
- width: unset;
4
- display: inline-table;
5
- z-index: 1031; /* One above header */
6
- }
7
-
8
- div.modal-dialog.google-visualization-charteditor-dialog
9
- #google-visualization-charteditor-options-panel
10
- .google-visualization-charteditor-section {
11
- width: unset;
12
- }
13
-
14
- div.modal-dialog.google-visualization-charteditor-dialog .goog-inline-block.goog-flat-menu-button {
15
- height: unset;
16
- }
17
-
18
- div.modal-dialog.google-visualization-charteditor-dialog div.google-visualization-charteditor-multi-section-title {
19
- width: 100%;
20
- border-collapse: separate;
21
- }
22
-
23
- div.modal-dialog.google-visualization-charteditor-dialog
24
- div.jfk-radiobutton.google-visualization-charteditor-thumbnail.goog-control {
25
- width: 120px;
26
- height: 80px;
27
- }
28
- .yasgui .copy_btn {
29
- box-sizing: unset;
30
- }
31
- .yasgui .tabContextButton {
32
- box-sizing: content-box;
33
- }
34
- .yasgui .autocomplete {
35
- line-height: normal;
1
+ div.modal-dialog.google-visualization-charteditor-dialog {
2
+ height: unset;
3
+ width: unset;
4
+ display: inline-table;
5
+ z-index: 1031; /* One above header */
6
+ }
7
+
8
+ div.modal-dialog.google-visualization-charteditor-dialog
9
+ #google-visualization-charteditor-options-panel
10
+ .google-visualization-charteditor-section {
11
+ width: unset;
12
+ }
13
+
14
+ div.modal-dialog.google-visualization-charteditor-dialog .goog-inline-block.goog-flat-menu-button {
15
+ height: unset;
16
+ }
17
+
18
+ div.modal-dialog.google-visualization-charteditor-dialog div.google-visualization-charteditor-multi-section-title {
19
+ width: 100%;
20
+ border-collapse: separate;
21
+ }
22
+
23
+ div.modal-dialog.google-visualization-charteditor-dialog
24
+ div.jfk-radiobutton.google-visualization-charteditor-thumbnail.goog-control {
25
+ width: 120px;
26
+ height: 80px;
27
+ }
28
+ .yasgui .copy_btn {
29
+ box-sizing: unset;
30
+ }
31
+ .yasgui .tabContextButton {
32
+ box-sizing: content-box;
33
+ }
34
+ .yasgui .autocomplete {
35
+ line-height: normal;
36
36
  }