mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
parent
c2e96f7052
commit
812aeac3d7
@ -4283,7 +4283,6 @@ textarea {
|
|||||||
padding: 0; }
|
padding: 0; }
|
||||||
.tab-nav > li {
|
.tab-nav > li {
|
||||||
font-family: "Open Sans";
|
font-family: "Open Sans";
|
||||||
font-weight: bold;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
@ -4395,6 +4394,28 @@ span.entity.entity-activity.activity-reason {
|
|||||||
.person {
|
.person {
|
||||||
color: #334d5c; }
|
color: #334d5c; }
|
||||||
|
|
||||||
|
.pagination {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center; }
|
||||||
|
.pagination .link {
|
||||||
|
background-color: white;
|
||||||
|
display: inline-block; }
|
||||||
|
.pagination .link:nth-of-type(1n+2) {
|
||||||
|
border-left: 1px solid #b2b2b2; }
|
||||||
|
.pagination .link.current {
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
background-color: #334d5c;
|
||||||
|
padding: 0.4em 0.8em; }
|
||||||
|
.pagination .link a {
|
||||||
|
display: block;
|
||||||
|
padding: 0.4em 0.8em; }
|
||||||
|
.pagination .link a:hover {
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: #43b29d; }
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
font-family: 'Open Sans'; }
|
font-family: 'Open Sans'; }
|
||||||
|
File diff suppressed because one or more lines are too long
@ -4,6 +4,7 @@
|
|||||||
@import 'custom/activity';
|
@import 'custom/activity';
|
||||||
@import 'custom/report';
|
@import 'custom/report';
|
||||||
@import 'custom/person';
|
@import 'custom/person';
|
||||||
|
@import 'custom/pagination';
|
||||||
|
|
||||||
html,body {
|
html,body {
|
||||||
min-height:100%;
|
min-height:100%;
|
||||||
|
31
Resources/public/sass/custom/_pagination.scss
Normal file
31
Resources/public/sass/custom/_pagination.scss
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
.pagination {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.link {
|
||||||
|
background-color: white;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link:nth-of-type(1n+2) {
|
||||||
|
border-left: 1px solid $chill-light-gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link.current {
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
background-color: #334d5c;
|
||||||
|
padding: 0.4em 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link a {
|
||||||
|
display: block;
|
||||||
|
padding: 0.4em 0.8em;
|
||||||
|
}
|
||||||
|
.link a:hover {
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: $chill-green;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user