progress
This commit is contained in:
parent
0e053b77e0
commit
8c7fde6567
50 changed files with 2066 additions and 581 deletions
|
|
@ -2,6 +2,7 @@
|
|||
@import "menu/menuGlobal.css";
|
||||
@import "leftMenu/leftMenuGlobal.css";
|
||||
@import "view/global.css";
|
||||
@import "composantperso/console.css";
|
||||
|
||||
.separator{
|
||||
height: 2px;
|
||||
|
|
@ -17,10 +18,16 @@
|
|||
|
||||
.squelette-component-content{
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
/*margin: 0px;*/
|
||||
margin-left: auto;
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
.squelette-menu-secondaire{
|
||||
width: 100%;
|
||||
height: 4vw;
|
||||
padding: 0;
|
||||
|
||||
}
|
||||
.squelette-component-horizontal{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
|
@ -30,12 +37,16 @@
|
|||
.squelette-component-infoPage{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
/*margin-top: 3vw;*/
|
||||
position: relative;
|
||||
}
|
||||
.footer-button{
|
||||
background: transparent;
|
||||
cursor: pointer;
|
||||
font-size: 0.8vw;
|
||||
}
|
||||
body{
|
||||
overflow: hidden!important;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,79 @@
|
|||
.console-content-all{
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
margin-left: 4px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
background: white;
|
||||
/* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05); */
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
|
||||
border-top-color: #c5c5c5;
|
||||
border-top-style: solid;
|
||||
border-top-width: 1px;
|
||||
border-left-color: rgb(197, 197, 197);
|
||||
border-left-style: solid;
|
||||
border-left-width: 1px;
|
||||
box-shadow: 1px 1px 10px #A0A0A0A0;
|
||||
height: 2vw;
|
||||
left: 15.8%;
|
||||
right: 0;
|
||||
}
|
||||
.split-console{}
|
||||
.console-content-all.active{
|
||||
height: 30vw;
|
||||
|
||||
}
|
||||
|
||||
.console-outilsBar-content{
|
||||
width: 4vw!important;
|
||||
/* margin: 0px; */
|
||||
padding: 0px;
|
||||
padding-top: 0px;
|
||||
background: whitesmoke;
|
||||
border-right-color: rgb(0, 0, 0,0.2);
|
||||
border-right-style: solid;
|
||||
border-right-width: 1px;}
|
||||
|
||||
.console-content{
|
||||
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.console-button{
|
||||
background: transparent;
|
||||
color: gray;
|
||||
/* margin: 0; */
|
||||
/* padding: 0px; */
|
||||
cursor: pointer;
|
||||
font-size: 1vw;
|
||||
}
|
||||
|
||||
.console-content-title{
|
||||
width: 100%;
|
||||
margin-left: 0px;
|
||||
background: whitesmoke;
|
||||
padding: 0.5vw;
|
||||
border-bottom-color: rgb(0, 0, 0,0.2);
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 1px;
|
||||
height: 2.5vw;
|
||||
}
|
||||
|
||||
.console-title{
|
||||
font-size: 0.8vw;
|
||||
}
|
||||
|
||||
.console-log-content{
|
||||
margin: 0px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
.console-date{
|
||||
margin-right: 0px;
|
||||
padding: 0px;
|
||||
font-size: 0.9vw;
|
||||
font-weight: bold;
|
||||
}
|
||||
.console-row{
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
width: 37px !important;
|
||||
}
|
||||
.horizontal-content{
|
||||
width: 90%;
|
||||
width: 100%;
|
||||
}
|
||||
.vaadin-text-field-container.style-scope.vaadin-password-field {
|
||||
width: 100%;
|
||||
|
|
|
|||
|
|
@ -31,6 +31,10 @@
|
|||
border-left-width: 0.2vw;
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
.leftMenu-global-button[disabled][disabled] {
|
||||
pointer-events: none;
|
||||
color: var(--lumo-disabled-text-color);
|
||||
}
|
||||
|
||||
|
||||
.leftMenu-global-action{
|
||||
|
|
@ -70,4 +74,11 @@
|
|||
font-size: 0.9vw;
|
||||
}
|
||||
|
||||
.leftMenu-content-action{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.leftMenu-global-inforStructure-content-label{}
|
||||
|
|
@ -28,6 +28,22 @@
|
|||
|
||||
}
|
||||
|
||||
.login-application-connexion-error {
|
||||
font-family: var(--lumo-font-family);
|
||||
font-size: var(--lumo-font-size-m);
|
||||
font-weight: 500;
|
||||
color: white;
|
||||
background-color:red ;
|
||||
border-radius: var(--lumo-border-radius);
|
||||
width: 100%;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
margin-top: 10%;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.login-application-layout{
|
||||
display: inline-block;
|
||||
box-shadow: 5px 4px 10px #A0A0A0A0;
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
width: 100%;
|
||||
background-color: #32cbcb;
|
||||
box-shadow: 5px 4px 10px #A0A0A0A0;
|
||||
height: 7%;
|
||||
padding: 0;
|
||||
height: 3vw;
|
||||
}
|
||||
.menu-secondaire-button{
|
||||
background-color: transparent;
|
||||
|
|
@ -11,4 +10,18 @@
|
|||
color: white;
|
||||
cursor: pointer;
|
||||
font-size: 1vw;
|
||||
}
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu-secondaire-button.active :after{
|
||||
border-top: 20px solid #32cbcb;
|
||||
content: "";
|
||||
position:absolute;
|
||||
border-left: 20px solid transparent;
|
||||
border-right: 20px solid transparent;
|
||||
width: 0px;
|
||||
margin-bottom: -15px;
|
||||
bottom: 0;
|
||||
display: block;
|
||||
margin-top:-4px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,4 +6,11 @@
|
|||
margin-right: auto;
|
||||
}
|
||||
|
||||
.creation-runtime-title2{
|
||||
color: #32CBBB;
|
||||
font-size: 1.2vw;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.creation-runtime-content{}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
.assetEdit-content{
|
||||
width: 77vw!important;
|
||||
height: 34vw;
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
.deployment-content{
|
||||
height: 100%;
|
||||
width: 100%!important;
|
||||
margin: auto;
|
||||
}
|
||||
.deployment-combobox{
|
||||
width: 8vw!important;
|
||||
}
|
||||
|
|
@ -1 +1,4 @@
|
|||
@import "addRuntime.css";
|
||||
@import "addRuntime.css";
|
||||
@import "template.css";
|
||||
@import "assedit.css";
|
||||
@import "deployment.css";
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
.templates-grid-perso{}
|
||||
|
||||
.template-content{
|
||||
height: 86%;
|
||||
width: 84%!important;
|
||||
}
|
||||
|
|
@ -21,4 +21,7 @@ jenkins.credentials=bb6b3297-2f7d-4431-a997-1ee185283c7f
|
|||
jenkins.nexusUrl=https://nexus.pymma-software.com/nexus/
|
||||
jenkins.nexusName=pymma-snapshot
|
||||
jenkins.jdkVersion=jdk18
|
||||
jenkins.group=EPO
|
||||
jenkins.group=EPO
|
||||
|
||||
spring.data.mongodb.database=businessProxyDB
|
||||
spring.data.mongodb.host=localhost:27017
|
||||
|
|
|
|||
Loading…
Add table
editor.link_modal.header
Reference in a new issue