mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-20 23:48:27 +00:00
* fix: striped table when element selected is text * fix: when column type is dropdown fix ui * fix: when category-type is multiselect * fix: make overflow-x scroll so that more radio buttons can fit * fix: when column is editable fix styles * add text styles: additional * fix: datepicker + striped table * multicursor trick if to switch - witchcraft * fix: add array check in tags component * fix: action buttons * merge badge and badges case * change overflow x to initial - temporary * fix conflict * add padding left, right * Update frontend/src/Editor/Components/Table/Table.jsx Co-authored-by: Sherfin Shamsudeen <sherfin@tooljet.io> * increase min height from 35 -> 55 Co-authored-by: Sherfin Shamsudeen <sherfin@tooljet.io>
36 lines
657 B
SCSS
36 lines
657 B
SCSS
// overwrites the styles of datepicker [cell-type]
|
|
.cell-type-datepicker {
|
|
z-index: 1;
|
|
margin-top: 2px;
|
|
margin-right: 5px;
|
|
|
|
.rdtPicker {
|
|
position: relative;
|
|
|
|
thead {
|
|
display: table-header-group;
|
|
vertical-align: middle;
|
|
}
|
|
tbody {
|
|
display: table-row-group;
|
|
}
|
|
tr {
|
|
display: table-row;
|
|
}
|
|
}
|
|
}
|
|
|
|
div[data-disabled='true'] {
|
|
pointer-events: none;
|
|
opacity: 0.6;
|
|
filter: alpha(opacity=50);
|
|
zoom: 1;
|
|
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
|
|
-moz-opacity: 0.5;
|
|
-khtml-opacity: 0.5;
|
|
}
|
|
|
|
.queries-container .btn-px-1 {
|
|
padding-left: .90rem;
|
|
padding-right: .90rem;
|
|
}
|