epfl-elements 4.6.0 → 4.7.0

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.
@@ -14,6 +14,7 @@ $white: #fff !default;
14
14
  $gray-100: #e6e6e6 !default;
15
15
  $gray-200: #d5d5d5 !default;
16
16
  $gray-300: #c1c1c1 !default;
17
+ $gray-500: #8e8e8e !default;
17
18
  $gray-600: #707070 !default;
18
19
  $black: #212121 !default;
19
20
 
@@ -383,7 +384,7 @@ $input-bg: $white !default;
383
384
  $input-disabled-bg: $gray-100 !default;
384
385
 
385
386
  $input-color: $black !default;
386
- $input-border-color: $gray-200 !default;
387
+ $input-border-color: $gray-500 !default;
387
388
  $input-border-width: $input-btn-border-width !default;
388
389
  $input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
389
390
 
@@ -5,6 +5,7 @@
5
5
  "$gray-100": "#e6e6e6",
6
6
  "$gray-200": "#d5d5d5",
7
7
  "$gray-300": "#c1c1c1",
8
+ "$gray-500": "#8e8e8e",
8
9
  "$gray-600": "#707070",
9
10
  "$black": "#212121",
10
11
  "$leman": "#00A79F",
@@ -0,0 +1,2 @@
1
+ <a class="btn btn-primary" href="#">Primary button link</a>
2
+ <a class="btn btn-secondary" href="#">Secondary button link</a>
@@ -25,3 +25,9 @@ variants:
25
25
  - name: login
26
26
  title: Login link
27
27
  notes:
28
+ - name: button
29
+ title: Button link
30
+ notes: |
31
+ Use the classes `btn`, `btn-primary` or `btn-secondary` to create a link with the look of a button.
32
+
33
+ ⚠️ Button links should be used to target a page or section of a page – like a regular link. To trigger an action, use an [HTML button](#/atoms/button).