Merge pull request #16 from sartography/feature/avoid-generic-styles

this class is used by bootstrap and has been the thing screwing up our margins
This commit is contained in:
Kevin Burnett 2022-09-30 14:18:07 +00:00 committed by GitHub
commit 4e26fc225f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ html, body {
}
/* Style buttons */
.btn {
.bpmn-js-spiffworkflow-btn {
background-color: DodgerBlue;
border: none;
color: white;
@ -54,6 +54,6 @@ html, body {
}
/* Darker background on mouse-over */
.btn:hover {
.bpmn-js-spiffworkflow-btn:hover {
background-color: RoyalBlue;
}

View File

@ -15,8 +15,8 @@
</head>
<body>
<div id="menu">
<button id="downloadButton" class="btn"><i class="fa fa-download"></i> Download</button>
<button id="uploadButton" class="btn">Open a file</button>
<button id="downloadButton" class="bpmn-js-spiffworkflow-btn"><i class="fa fa-download"></i> Download</button>
<button id="uploadButton" class="bpmn-js-spiffworkflow-btn">Open a file</button>
</div>
<div id="container">
<div id="modeler"></div>