mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-16 13:15:00 +00:00
60 lines
860 B
CSS
60 lines
860 B
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
outline: none;
|
|
padding: 0;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
#container {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#modeler {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#panel {
|
|
background-color: #fafafa;
|
|
border: solid 1px #ccc;
|
|
border-radius: 2px;
|
|
font-family: 'Arial', sans-serif;
|
|
padding: 10px;
|
|
min-width: 400px;
|
|
}
|
|
|
|
.djs-label {
|
|
font-family: 'Arial', sans-serif;
|
|
}
|
|
|
|
.spiffworkflow-properties-panel-button {
|
|
margin: 2px 32px 6px 12px;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
/* Style buttons */
|
|
.bpmn-js-spiffworkflow-btn {
|
|
background-color: DodgerBlue;
|
|
border: none;
|
|
color: white;
|
|
padding: 8px 15px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
margin: 12px;
|
|
}
|
|
|
|
/* Darker background on mouse-over */
|
|
.bpmn-js-spiffworkflow-btn:hover {
|
|
background-color: RoyalBlue;
|
|
}
|