feat: disabled button in list component.

This commit is contained in:
Ahmed Bouhuolia
2020-11-24 12:47:03 +02:00
parent 431a6be377
commit a6bc88f83d
6 changed files with 33 additions and 41 deletions

View File

@@ -30,30 +30,27 @@
padding-right: 12px;
}
.bp3-button:not([class*="bp3-intent-"]):not(.bp3-minimal){
background-color: #E6EFFB;
color: #555555;
box-shadow: 0 0 0 transparent;
&:hover,
&:focus{
background-color: #CFDCEE;
}
&.bp3-small{
font-size: 13px;
min-height: 29px;
}
.form-group--select-list &{
border-radius: 2px;
&,
&:hover{
background: #fff;
box-shadow: 0 0 0 transparent;
border: 1px solid #ced4da;
}
&:not(:disabled) {
background: #fff;
}
}
}
.form-group--select-list.bp3-intent-danger &{

View File

@@ -48,6 +48,11 @@ label.bp3-label{
box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
border-color: #80bdff;
}
&.bp3-disabled,
&:disabled{
background: #e9ecef;
}
}
.#{$ns}-form-group{