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:
commit
4e26fc225f
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue