All files / Buttongroup Buttongroup.module.css

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 721x                                                                                                                                              
.varClass {
  /* button group default variables */
  --buttongroup_bg_color: var(--zdt_buttongroup_default_bg);
  --buttongroup_box_shadow: none;
  --buttongroup_padding: 0;
  --buttongroup_border_width: 0;
  --buttongroup_border_style: solid;
  --buttongroup_border_color: var(--zdt_buttongroup_default_border);
}
 
.buttonGroup {
  composes: varClass;
  composes: cboth from '../common/common.module.css';
  background-color: var(--buttongroup_bg_color);
  box-shadow: var(--buttongroup_box_shadow);
  padding: var(--buttongroup_padding);
  border-width: var(--buttongroup_border_width);
  border-style: var(--buttongroup_border_style);
  border-color: var(--buttongroup_border_color);
}
 
.footer {
  --buttongroup_padding: 20px 0 20px 60px
    /*rtl: 20px 60px 20px 0*/
  ;
  --buttongroup_box_shadow: var(--zd_bs_buttongroup_footer);
}
 
.header {
  --buttongroup_padding: 12px 20px;
  --buttongroup_border_width: 0 0 1px 0;
}
 
.tab>div button:first-child {
  border-radius: 5px 0 0 5px;
}
 
.tab>div button:last-child {
  border-radius: 0 5px 5px 0;
}
 
.alignleft {
  composes: fleft from '../common/common.module.css';
}
 
.alignright {
  composes: fright from '../common/common.module.css';
}
 
.aligncenter {
  composes: tcenter from '../common/common.module.css';
}
 
.alignleft>button:first-child {
  margin-left: 0;
}
 
.alignleft>button {
  margin-left: 15px;
}
 
.alignright>button:last-child {
  margin-right: 0;
}
 
.alignright>button {
  margin-right: 15px;
}
 
.aligncenter>button {
  margin-right: 15px;
}