Skip to content
Snippets Groups Projects
Commit 2df2e241 authored by Antoine Dupré's avatar Antoine Dupré
Browse files

feature: add edit request + css + order-by dev

parent 06536e3d
No related branches found
No related tags found
No related merge requests found
Pipeline #15844 passed with stage
in 1 minute and 14 seconds
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
--color-body: #636363; --color-body: #636363;
--color-gray-1: #D3D5DD; --color-gray-1: #D3D5DD;
--color-bg-page: #F2F2F2; --color-bg-page: #F2F2F2;
--color-blue-light: #D5EDFF;
} }
body { body {
color: var(--color-body); color: var(--color-body);
......
...@@ -405,4 +405,8 @@ main div[data-view] { ...@@ -405,4 +405,8 @@ main div[data-view] {
margin: 0 0 10px 0; margin: 0 0 10px 0;
padding: 0 0 10px 10px; padding: 0 0 10px 10px;
list-style-position: inside; list-style-position: inside;
}
.padding-bottom-none {
padding-bottom: 0;
} }
\ No newline at end of file
#tzcld-suivit {
background-color: var(--color-blue-light);
min-height: calc(100vh - 50px);
margin-top: -30px;
margin-left: -24px;
margin-right: -15px;
&>div {
padding: 30px 15px 30px 24px;
&.padding-bottom-none {
padding-bottom: 0;
}
}
.table-requests {
nav {
display: none;
}
}
&>h2 {
margin-left: 24px;
}
}
#tzcld-suivit-request-edit,
#tzcld-suivit-request-add { #tzcld-suivit-request-add {
label { label {
display: block; display: block;
} }
}
#tzcld-suivit-requests {
background-color: var(--color-blue-light);
min-height: calc(100vh - 50px);
margin-top: -30px;
margin-left: -24px;
margin-right: -15px;
&>div {
padding: 30px 15px 30px 24px;
}
nav {
width: 100%;
display: block!important;
}
}
.table-requests {
table {
width: 100%;
border-right: 1px solid #c9c8c8;
border-top: 1px solid #c9c8c8;
border-collapse: collapse;
box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.25);
th {
height: 50px;
border-right: 1px solid #fff;
color: var(--color-heading);
text-align: center;
vertical-align: middle;
border-bottom: 1px solid #c9c8c8;
border-left: 1px solid #c9c8c8;
font-size: 16px;
font-weight: 600;
letter-spacing: .25px;
background-color: var(--color-third);
&:first-child {
text-align: left;
position: relative;
padding-left: 15px;
&:after {
display: inline;
display: none;
float: right;
content: '\f35d';
font-size: 20px;
margin-right: 10px;
font-family: 'material-design-icons' !important;
font-style: normal;
font-weight: 400;
speak: none;
text-decoration: inherit;
width: 1em;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
-webkit-font-smoothing: antialiased;
}
&.asc:after {
content: '\f360';
}
}
}
td {
width: 20%;
background-color: #fff;
padding: 10px 15px;
border-bottom: 1px solid #c9c8c8;
border-left: 1px solid #c9c8c8;
&:nth-child(2) {
max-width: 10%;
}
&:nth-child(3) {
width: 1%;
white-space: nowrap;
}
&:first-child,
&:last-child {
width: 1%;
white-space: nowrap;
}
}
}
} }
\ No newline at end of file
...@@ -142,4 +142,12 @@ ...@@ -142,4 +142,12 @@
} }
} }
} }
\ No newline at end of file #tzcld-mon-territoire {
&>div {
margin-left: -24px;
&>div {
padding-left: 24px;
}
}
}
...@@ -8,6 +8,8 @@ export const TZCLD_URLS = { ...@@ -8,6 +8,8 @@ export const TZCLD_URLS = {
my_territory_follow: 'tzcld-suivit', my_territory_follow: 'tzcld-suivit',
my_territory_follow_requests_all: 'tzcld-suivit-requests', my_territory_follow_requests_all: 'tzcld-suivit-requests',
my_territory_follow_request_add: 'tzcld-suivit-request-add', my_territory_follow_request_add: 'tzcld-suivit-request-add',
my_territory_follow_request_edit: 'tzcld-suivit-request-edit',
my_territory_follow_request_space: 'tzcld-suivit-request-space',
my_territory_follow: 'tzcld-suivit', my_territory_follow: 'tzcld-suivit',
my_territory_exchanges: 'tzcld-echnages', my_territory_exchanges: 'tzcld-echnages',
my_territory_all_exchanges: 'tzcld-tous-les-echnages', my_territory_all_exchanges: 'tzcld-tous-les-echnages',
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment