Merge remote-tracking branch 'z-eactive/jenkins_with_weblogic' into jenkins_with_weblogic
This commit is contained in:
@@ -5388,6 +5388,8 @@ select.form-control {
|
|||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
border: 1px solid #E5E7EB;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
|
||||||
}
|
}
|
||||||
.list-table-wrapper {
|
.list-table-wrapper {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
@@ -5397,7 +5399,7 @@ select.form-control {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: #3BA4ED;
|
background: #3BA4ED;
|
||||||
height: 72px;
|
height: 48px;
|
||||||
padding: 0 24px;
|
padding: 0 24px;
|
||||||
}
|
}
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
@@ -5410,10 +5412,11 @@ select.form-control {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 8px 16px;
|
padding: 8px 16px;
|
||||||
font-size: 20px;
|
font-size: 13px;
|
||||||
font-weight: 700;
|
font-weight: 600;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
letter-spacing: 0.3px;
|
||||||
}
|
}
|
||||||
.list-table .list-table-body {
|
.list-table .list-table-body {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -5422,18 +5425,22 @@ select.form-control {
|
|||||||
.list-table .list-table-row {
|
.list-table .list-table-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 54px;
|
height: 48px;
|
||||||
padding: 8px 24px;
|
padding: 8px 24px;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.15s ease;
|
||||||
|
border-bottom: 1px solid #F3F4F6;
|
||||||
|
}
|
||||||
|
.list-table .list-table-row:last-child {
|
||||||
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
.list-table .list-table-row:nth-child(even) {
|
.list-table .list-table-row:nth-child(even) {
|
||||||
background-color: #EDF5FD;
|
background-color: #F8FBFE;
|
||||||
}
|
}
|
||||||
.list-table .list-table-row:nth-child(odd) {
|
.list-table .list-table-row:nth-child(odd) {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
}
|
}
|
||||||
.list-table .list-table-row:hover {
|
.list-table .list-table-row:hover {
|
||||||
background-color: rgba(0, 73, 180, 0.08);
|
background-color: #EDF5FD;
|
||||||
}
|
}
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
.list-table .list-table-row {
|
.list-table .list-table-row {
|
||||||
@@ -5448,8 +5455,8 @@ select.form-control {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 8px 16px;
|
padding: 8px 16px;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
color: #515151;
|
color: #374151;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
@@ -5886,7 +5893,7 @@ select.form-control {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 24px 20px;
|
padding: 16px 24px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: #212529;
|
color: #212529;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -43,7 +43,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: $spacing-lg 20px;
|
padding: $spacing-md $spacing-lg;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: $font-weight-bold;
|
font-weight: $font-weight-bold;
|
||||||
color: #212529;
|
color: #212529;
|
||||||
|
|||||||
@@ -274,24 +274,27 @@
|
|||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
// List Table - Modern design with colored header (Figma: 984-2173)
|
// List Table - Modern design with colored header (Figma: 984-2173)
|
||||||
// Used in: User management, API key list, etc.
|
// Used in: User management, API key list, etc.
|
||||||
|
// Refined: Clean Minimal sizing with original KJB colors
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
.list-table {
|
.list-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: $white;
|
background: $white;
|
||||||
border-radius: $border-radius-lg;
|
border-radius: $border-radius-lg;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
border: 1px solid #E5E7EB;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
|
||||||
|
|
||||||
&-wrapper {
|
&-wrapper {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
margin-bottom: $spacing-xl;
|
margin-bottom: $spacing-xl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Table Header - Blue background with white text
|
// Table Header - Blue background with white text (refined sizing)
|
||||||
.list-table-header {
|
.list-table-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: #3BA4ED;
|
background: #3BA4ED;
|
||||||
height: 72px;
|
height: 48px;
|
||||||
padding: 0 $spacing-lg;
|
padding: 0 $spacing-lg;
|
||||||
|
|
||||||
@media (max-width: $breakpoint-md) {
|
@media (max-width: $breakpoint-md) {
|
||||||
@@ -303,10 +306,11 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: $spacing-sm $spacing-md;
|
padding: $spacing-sm $spacing-md;
|
||||||
font-size: 20px;
|
font-size: 13px;
|
||||||
font-weight: $font-weight-bold;
|
font-weight: $font-weight-semibold;
|
||||||
color: $white;
|
color: $white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
letter-spacing: 0.3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -320,13 +324,18 @@
|
|||||||
.list-table-row {
|
.list-table-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 54px;
|
height: 48px;
|
||||||
padding: $spacing-sm $spacing-lg;
|
padding: $spacing-sm $spacing-lg;
|
||||||
transition: $transition-base;
|
transition: $transition-fast;
|
||||||
|
border-bottom: 1px solid #F3F4F6;
|
||||||
|
|
||||||
// Alternating row colors
|
&:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alternating row colors (softer)
|
||||||
&:nth-child(even) {
|
&:nth-child(even) {
|
||||||
background-color: #EDF5FD;
|
background-color: #F8FBFE;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(odd) {
|
&:nth-child(odd) {
|
||||||
@@ -334,7 +343,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: rgba($primary-blue, 0.08);
|
background-color: #EDF5FD;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: $breakpoint-md) {
|
@media (max-width: $breakpoint-md) {
|
||||||
@@ -349,8 +358,8 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: $spacing-sm $spacing-md;
|
padding: $spacing-sm $spacing-md;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
color: #515151;
|
color: #374151;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user