You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

254 lines
4.4 KiB

3 years ago
/* src/app/components/Menu/styles.css */
.NLT__menu {
position: relative;
}
.NLT__menu-container {
position: absolute;
border-radius: 4px;
font-weight: 400;
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
z-index: var(--layer-menu);
}
/* src/app/components/TagCell/styles.css */
.NLT__tag-cell {
display: flex;
align-items: center;
padding: 4px 8px;
}
.NLT__tag {
display: flex;
align-items: center;
border-radius: 8px;
padding: 2px 8px;
width: fit-content;
}
.NLT__tag-content {
width: 100%;
}
.NLT__tag--red {
background-color: #ff6961;
}
.NLT__tag--yellow {
background-color: #faffc7;
}
.NLT__tag--orange {
background-color: #ffdfd3;
}
.NLT__tag--pink {
background-color: #fec8d8;
}
.NLT__tag--gray {
background-color: #cfcfc4;
}
.NLT__tag--purple {
background-color: #e0bbe4;
}
/* src/app/components/TagMenuContent/styles.css */
.NLT__tag-menu-top {
display: flex;
3 years ago
align-items: center;
3 years ago
background-color: rgba(0, 0, 0, 0.25);
padding: 4px 10px;
}
.NLT__tag-menu-bottom {
min-height: 100px;
padding: 4px 10px;
}
.NLT__tag-menu-text {
font-size: 0.85rem;
margin: 5px 0px;
width: 100%;
}
.NLT__tag-menu-input {
background-color: transparent !important;
border: 0 !important;
3 years ago
width: 100%;
min-width: 100px;
padding-left: 0px !important;
}
/* src/app/components/CellEditMenu/styles.css */
.NLT__cell-edit-menu {
width: 100%;
height: 100%;
3 years ago
}
/* src/app/components/EditableTd/styles.css */
.NLT__td {
position: relative;
vertical-align: top;
height: 2rem;
cursor: default;
}
3 years ago
.NLT__td:focus-visible {
3 years ago
border: 1px solid blue;
border-style: double;
}
.NLT__td--number {
text-align: right;
}
.NLT__td-content-container {
user-select: none;
}
/* src/app/components/Table/styles.css */
tbody > tr > .NLT__td:last-child {
border: 0 !important;
vertical-align: middle;
}
tfoot > tr > .NLT__td {
border: 0 !important;
}
/* src/app/components/IconText/styles.css */
.NLT__icon-text {
display: flex;
align-items: center;
}
.NLT__icon-text > p {
margin: 0;
}
/* src/app/components/DragMenu/styles.css */
.NLT__drag-menu {
width: 180px;
font-size: 0.9rem;
}
3 years ago
.NLT__drag-menu-item:focus-visible {
3 years ago
outline: 1px solid blue;
}
/* src/app/components/HeaderMenu/styles.css */
.NLT__header-menu {
padding: 4px 10px;
cursor: default;
3 years ago
min-width: 150px;
3 years ago
}
3 years ago
.NLT__header-menu-item:focus-visible {
3 years ago
outline: 1px solid blue;
}
.NLT__header-menu-header-container {
display: flex;
margin-bottom: 5px;
font-size: 0.95rem;
}
.NLT__header-menu-ul {
padding: 0;
margin: 0;
}
.NLT__header-menu-header {
font-weight: 700;
padding-left: 5px;
}
.NLT__header-menu-item {
font-size: 0.9rem;
display: flex;
align-items: center;
padding: 0;
margin: 0;
}
.NLT__header-menu-delete-button {
margin-top: 10px;
}
/* src/app/components/EditableTh/styles.css */
.NLT__th {
text-align: left;
}
3 years ago
.NLT__th:focus-visible {
3 years ago
border: 1px solid blue;
border-style: double;
}
.NLT__th:last-child {
border: 0 !important;
}
.NLT__header-content-container {
display: flex;
}
.NLT__header-resize-container {
position: relative;
}
.NLT__header-content {
width: 100%;
padding-right: 10px;
margin-right: 5px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
user-select: none;
}
.NLT__header-resize {
position: absolute;
cursor: col-resize;
width: 10px;
margin-left: 7px;
min-height: 25px;
height: 100%;
}
/* src/app/app.css */
.NLT__error {
color: red;
}
.NLT__app {
margin-bottom: 20px;
overflow: auto;
resize: vertical;
}
.NLT__button {
padding: 4px;
}
3 years ago
.NLT__button:focus-visible {
3 years ago
outline: 1px solid blue;
}
.NLT__button--sm {
width: 50px;
}
.NLT__button--reset {
padding: 0;
border: 0;
margin: 0;
}
.NLT__icon--selectable:hover {
border-radius: 4px;
box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.NLT__icon--md {
width: 1rem !important;
height: 1rem !important;
}
.NLT__selectable {
cursor: pointer;
}
.NLT__selectable:hover {
background-color: var(--interactive-hover);
}
.NLT__selected {
background-color: var(--interactive-normal);
}
.NLT__margin-right {
margin-right: 4px;
}
.NLT__margin-left {
margin-left: 4px;
}
.NLT__p {
margin: 0;
}
.NLT__input {
height: 100%;
width: 100%;
padding: 4px 10px !important;
border: 0 !important;
}
.NLT__input--number {
text-align: right;
}
3 years ago
.NLT__input--textarea {
overflow: hidden;
}