Initial commit
This commit is contained in:
284
users-manage/public/css/components/2_tabulator-table.css
Normal file
284
users-manage/public/css/components/2_tabulator-table.css
Normal file
@@ -0,0 +1,284 @@
|
||||
.tabulator {
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
color: rgb(54, 54, 51);
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.tabulator-header-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header .tabulator-header-contents {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header .tabulator-col {
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
overflow: hidden;
|
||||
height: fit-content !important;
|
||||
margin-right: 3px;
|
||||
}
|
||||
/* .tabulator-col-resize-handle {
|
||||
height: fit-content !important;
|
||||
} */
|
||||
|
||||
.tabulator .tabulator-headers {
|
||||
}
|
||||
|
||||
.tabulator .tabulator-headers .tabulator-col-resize-handle {
|
||||
width: 3px;
|
||||
height: 25px !important;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-tableholder {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-tableholder .tabulator-table {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
overflow: visible;
|
||||
color: #333;
|
||||
}
|
||||
.tabulator-row {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
min-height: 22px;
|
||||
background-color: rgb(var(--color-slate-50));
|
||||
width: calc(100% - 15px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tabulator-row:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.tabulator-row .tabulator-cell {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.tabulator-cell:first-child {
|
||||
padding: 0 0.25rem;
|
||||
}
|
||||
|
||||
.tabulator-placeholder-contents {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-col-resize-handle {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 6px;
|
||||
margin-left: -3px;
|
||||
margin-right: -3px;
|
||||
z-index: 10;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col
|
||||
.tabulator-col-content
|
||||
.tabulator-col-title-holder {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tabulator-col-title {
|
||||
display: none;
|
||||
text-align: center;
|
||||
color: #7d7d7d;
|
||||
font-size: 14px;
|
||||
font-weight: 900;
|
||||
}
|
||||
/* .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title { */
|
||||
/* padding-right: 25px; */
|
||||
/* } */
|
||||
/*
|
||||
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: bottom;
|
||||
text-align: center;
|
||||
} */
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col.tabulator-sortable[aria-sort="none"]
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
bottom: 0;
|
||||
right: 4px;
|
||||
}
|
||||
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col.tabulator-sortable[aria-sort="none"]
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter
|
||||
.tabulator-arrow {
|
||||
border-top: none;
|
||||
border-bottom: 6px solid #bbb;
|
||||
}
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col
|
||||
.tabulator-col-content
|
||||
.tabulator-col-sorter
|
||||
.tabulator-arrow {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-bottom: 6px solid #bbb;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.tabulator-header-filter > input {
|
||||
padding: 0px 0.5rem !important;
|
||||
font-size: 10px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.tabulator-header-filter {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.tabulator-header-filter > input {
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
border-bottom: 1px solid rgb(var(--color-slate-200));
|
||||
}
|
||||
.tabulator
|
||||
.tabulator-header
|
||||
.tabulator-col.tabulator-col-sorter-element[aria-sort="descending"]
|
||||
.tabulator-col-sorter
|
||||
.tabulator-arrow {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
border-radius: 100px;
|
||||
margin-top: 2px;
|
||||
background: rgb(115, 115, 121);
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
|
||||
width: 80%;
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen {
|
||||
display: inline-block;
|
||||
position: sticky;
|
||||
left: 0;
|
||||
background-color: inherit;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
|
||||
border-right: 2px solid #aaa;
|
||||
}
|
||||
|
||||
.tabulator-row.tabulator-moving{
|
||||
position:absolute;
|
||||
border-top:1px solid #aaa;
|
||||
border-bottom:1px solid #aaa;
|
||||
pointer-events:none;
|
||||
z-index:15;
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.tabulator-row .tabulator-row-resize-handle{position:absolute;right:0;bottom:0;left:0;height:5px}
|
||||
|
||||
.tabulator-row .tabulator-row-resize-handle.prev{top:0;bottom:auto}
|
||||
|
||||
.tabulator-row .tabulator-row-resize-handle:hover{cursor:ns-resize}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse{box-sizing:border-box;padding:5px;border-top:1px solid #aaa;border-bottom:1px solid #aaa}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse:empty{display:none}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse table{font-size:14px}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse table tr td{position:relative}
|
||||
|
||||
.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type{padding-right:10px}
|
||||
|
||||
.tabulator-row .tabulator-cell{display:inline-block;position:relative;box-sizing:border-box;padding:4px;border-right:1px solid #aaa;vertical-align:middle;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen{display:inline-block;position:sticky;left:0;background-color:inherit;z-index:10}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left{border-right:2px solid #aaa}.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right{border-left:2px solid #aaa}
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-editing{border:1px solid #1d68cd;outline:none;padding:0}
|
||||
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-validation-fail{border:1px solid #d00}
|
||||
|
||||
|
||||
.tabulator-row .tabulator-cell.tabulator-row-handle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
-moz-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-o-user-select: none;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=tabulator.min.css.map */
|
||||
4
users-manage/public/css/fonts.css
Normal file
4
users-manage/public/css/fonts.css
Normal file
@@ -0,0 +1,4 @@
|
||||
@font-face {
|
||||
font-family: Nunito;
|
||||
src: url(../fonts/Nunito.ttf);
|
||||
}
|
||||
119
users-manage/public/css/global.css
Normal file
119
users-manage/public/css/global.css
Normal file
@@ -0,0 +1,119 @@
|
||||
|
||||
body {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
html body {
|
||||
overflow-x: hidden;
|
||||
font-family: Nunito;
|
||||
font-size: 0.875rem;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.text-ssm {
|
||||
font-size: 0.675rem;
|
||||
line-height: 1.1rem;
|
||||
}
|
||||
|
||||
input[phx-hook='ToggleInput'] {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
.fontw-100 {
|
||||
font-weight: 100
|
||||
}
|
||||
|
||||
.fontw-200 {
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
.fontw-300 {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.fontw-400 {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.fontw-500 {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.fontw-600 {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.fontw-700 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.fontw-800 {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.fontw-900 {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.font-w-100 {
|
||||
font-weight: 100
|
||||
}
|
||||
|
||||
.font-w-200 {
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
.font-w-300 {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.font-w-400 {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.font-w-500 {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.font-w-600 {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.font-w-700 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.font-w-800 {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.font-w-900 {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.transition-all {
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
.transition-3 {
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
.transition-4 {
|
||||
transition: all .4s;
|
||||
}
|
||||
|
||||
.transition-5 {
|
||||
transition: all .5s;
|
||||
}
|
||||
|
||||
.transition-6 {
|
||||
transition: all .6s;
|
||||
}
|
||||
|
||||
.transition-7 {
|
||||
transition: all .7s;
|
||||
}
|
||||
156
users-manage/public/css/remixicons/index.html
Normal file
156
users-manage/public/css/remixicons/index.html
Normal file
File diff suppressed because one or more lines are too long
2782
users-manage/public/css/remixicons/remixicon.css
Normal file
2782
users-manage/public/css/remixicons/remixicon.css
Normal file
File diff suppressed because it is too large
Load Diff
BIN
users-manage/public/css/remixicons/remixicon.eot
Normal file
BIN
users-manage/public/css/remixicons/remixicon.eot
Normal file
Binary file not shown.
1
users-manage/public/css/remixicons/remixicon.glyph.json
Normal file
1
users-manage/public/css/remixicons/remixicon.glyph.json
Normal file
File diff suppressed because one or more lines are too long
2784
users-manage/public/css/remixicons/remixicon.less
Normal file
2784
users-manage/public/css/remixicons/remixicon.less
Normal file
File diff suppressed because it is too large
Load Diff
2766
users-manage/public/css/remixicons/remixicon.module.less
Normal file
2766
users-manage/public/css/remixicons/remixicon.module.less
Normal file
File diff suppressed because it is too large
Load Diff
5501
users-manage/public/css/remixicons/remixicon.scss
Normal file
5501
users-manage/public/css/remixicons/remixicon.scss
Normal file
File diff suppressed because it is too large
Load Diff
2753
users-manage/public/css/remixicons/remixicon.styl
Normal file
2753
users-manage/public/css/remixicons/remixicon.styl
Normal file
File diff suppressed because it is too large
Load Diff
8230
users-manage/public/css/remixicons/remixicon.svg
Normal file
8230
users-manage/public/css/remixicons/remixicon.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 2.3 MiB |
11
users-manage/public/css/remixicons/remixicon.symbol.svg
Normal file
11
users-manage/public/css/remixicons/remixicon.symbol.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 1.4 MiB |
BIN
users-manage/public/css/remixicons/remixicon.ttf
Normal file
BIN
users-manage/public/css/remixicons/remixicon.ttf
Normal file
Binary file not shown.
BIN
users-manage/public/css/remixicons/remixicon.woff
Normal file
BIN
users-manage/public/css/remixicons/remixicon.woff
Normal file
Binary file not shown.
BIN
users-manage/public/css/remixicons/remixicon.woff2
Normal file
BIN
users-manage/public/css/remixicons/remixicon.woff2
Normal file
Binary file not shown.
19306
users-manage/public/css/remixicons/symbol.html
Normal file
19306
users-manage/public/css/remixicons/symbol.html
Normal file
File diff suppressed because it is too large
Load Diff
175
users-manage/public/css/remixicons/unicode.html
Normal file
175
users-manage/public/css/remixicons/unicode.html
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user