definicao de layout

This commit is contained in:
2026-02-06 14:37:54 +00:00
parent 872a5bb3ea
commit a4f80c85c2
2686 changed files with 640668 additions and 294 deletions

View File

@@ -0,0 +1,59 @@
/**=====================
31. JS datagrid CSS Start
==========================**/
.jsgrid{
.jsgrid-grid-body{
.jsgrid-cell{
padding: 0.75rem;
}
}
.jsgrid-pager-container{
text-align: right;
}
.jsgrid-pager{
padding: 0;
margin-top: 20px;
.jsgrid-pager-nav-inactive-button{
margin-right: -5px;
&:first-child{
border-radius: 5px 0 0 5px;
}
}
.jsgrid-pager-page{
&~.jsgrid-pager-nav-button{
margin-left: -5px;
&:last-child{
border-radius:0 5px 5px 0;
}
}
}
[class*="jsgrid-pager"]{
display: inline-block;
min-width: 1.5em;
padding: 0.5em 1em;
border: 1px solid $light-gray;
}
.jsgrid-pager-page{
a{
color: $dark-color;
}
}
.jsgrid-pager-current-page{
color: $dark-color;
}
}
.jsgrid-selected-row{
>.jsgrid-cell{
background: $light-gray;
border-color: $auth-bg-color;
}
}
.jsgrid-header-row{
> .jsgrid-header-cell{
padding: 0.75rem;
}
}
}
/**=====================
31. JS datagrid CSS Ends
==========================**/