mirror of https://github.com/hashicorp/consul
John Cowen
4 years ago
committed by
GitHub
13 changed files with 65 additions and 59 deletions
@ -0,0 +1,34 @@
|
||||
%pill-allow::before, |
||||
%pill-deny::before, |
||||
%pill-l7::before { |
||||
@extend %as-pseudo; |
||||
margin-right: 5px; |
||||
font-size: 0.9em; |
||||
} |
||||
%pill-allow, |
||||
%pill-deny, |
||||
%pill-l7 { |
||||
display: inline-block; |
||||
font-weight: $typo-weight-normal; |
||||
font-size: $typo-size-600; |
||||
} |
||||
%pill-allow { |
||||
color: $green-800; |
||||
background-color: $green-100; |
||||
} |
||||
%pill-deny { |
||||
color: $red-800; |
||||
background-color: $red-100; |
||||
} |
||||
%pill-l7 { |
||||
@extend %frame-gray-900; |
||||
} |
||||
%pill-allow::before { |
||||
@extend %with-arrow-right-color-mask; |
||||
} |
||||
%pill-deny::before { |
||||
@extend %with-deny-color-mask; |
||||
} |
||||
%pill-l7::before { |
||||
@extend %with-layers-mask; |
||||
} |
@ -0,0 +1,8 @@
|
||||
@import './components'; |
||||
|
||||
@import './search-bar'; |
||||
@import './list'; |
||||
@import './form/fieldsets'; |
||||
@import './permission/list'; |
||||
@import './permission/form'; |
||||
@import './permission/header/list'; |
@ -0,0 +1,9 @@
|
||||
.consul-intention-search-bar { |
||||
.value-allow button::before { |
||||
@extend %with-arrow-right-color-mask, %as-pseudo; |
||||
color: $green-500; |
||||
} |
||||
.value-deny button::before { |
||||
@extend %with-deny-color-icon, %as-pseudo; |
||||
} |
||||
} |
Loading…
Reference in new issue