Browse Source

feat(deps): update atlaskit/dropdown-menu to 6.1.12

This is a pre-requisite to updating atlaskit/tabs to 8.0.8.
Without updating, clicking a dropdown menu within a tab
component within a modal, such as the language selector in
the settings dialog, will lock the browser.
j8
Leonard Kim 7 years ago
parent
commit
7b71482b03
4 changed files with 424 additions and 725 deletions
  1. 17
    0
      css/_atlaskit_overrides.scss
  2. 0
    8
      css/modals/_dialog.scss
  3. 406
    716
      package-lock.json
  4. 1
    1
      package.json

+ 17
- 0
css/_atlaskit_overrides.scss View File

38
         background-color: #172B4D;
38
         background-color: #172B4D;
39
     }
39
     }
40
 }
40
 }
41
+
42
+.modal-dialog-form {
43
+    /**
44
+     * Update the dropdown trigger wrapper to make sure it looks click-able.
45
+     */
46
+    .gwEjuO {
47
+        cursor: pointer;
48
+    }
49
+
50
+    /**
51
+     * Override Atlaskit dropdown styling when in a modal because the dropdown
52
+     * backgrounds clash with the modal backgrounds.
53
+     */
54
+    .gBLqhw[data-role=droplistContent] {
55
+        border: 1px solid #455166;
56
+    }
57
+}

+ 0
- 8
css/modals/_dialog.scss View File

154
     &-error {
154
     &-error {
155
         margin-bottom: 8px;
155
         margin-bottom: 8px;
156
     }
156
     }
157
-
158
-    /**
159
-     * Override Atlaskit dropdown styling when in a modal because the dropdown
160
-     * backgrounds clash with the modal backgrounds.
161
-     */
162
-    .htclLc[data-role=droplistContent] {
163
-        border: 1px solid #455166;
164
-    }
165
 }
157
 }
166
 .modal-dialog-footer {
158
 .modal-dialog-footer {
167
     font-size: $modalButtonFontSize;
159
     font-size: $modalButtonFontSize;

+ 406
- 716
package-lock.json
File diff suppressed because it is too large
View File


+ 1
- 1
package.json View File

18
     "@atlaskit/avatar": "14.0.10",
18
     "@atlaskit/avatar": "14.0.10",
19
     "@atlaskit/button": "9.0.8",
19
     "@atlaskit/button": "9.0.8",
20
     "@atlaskit/checkbox": "4.0.6",
20
     "@atlaskit/checkbox": "4.0.6",
21
-    "@atlaskit/dropdown-menu": "3.10.2",
21
+    "@atlaskit/dropdown-menu": "6.1.12",
22
     "@atlaskit/field-text": "7.0.10",
22
     "@atlaskit/field-text": "7.0.10",
23
     "@atlaskit/field-text-area": "4.0.9",
23
     "@atlaskit/field-text-area": "4.0.9",
24
     "@atlaskit/flag": "6.1.0",
24
     "@atlaskit/flag": "6.1.0",

Loading…
Cancel
Save