Skip to content
Snippets Groups Projects
Commit 74e07691 authored by David Sehnal's avatar David Sehnal
Browse files

mol-plugin: added a little color to the UI

parent 03fe5a51
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
text-align: center; text-align: center;
font-weight: bold; font-weight: bold;
background: $default-background; background: $default-background;
// border-right: $control-spacing solid $entity-color-Group; // TODO separate color
border-top: 1px solid $entity-color-Group; // TODO separate color
// border-bottom: 1px solid $entity-color-Group; // TODO separate color
} }
.msp-btn-row-group { .msp-btn-row-group {
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
.msp-transform-header { .msp-transform-header {
position: relative; position: relative;
border-top: 1px solid $entity-color-Behaviour; // TODO: separate color
> button { > button {
text-align: left; text-align: left;
......
...@@ -148,7 +148,7 @@ class RemoteStateSnapshotList extends PluginComponent<{ serverUrl: string }, { e ...@@ -148,7 +148,7 @@ class RemoteStateSnapshotList extends PluginComponent<{ serverUrl: string }, { e
render() { render() {
return <div> return <div>
<button title='Click to Refresh' style={{fontWeight: 'bold'}} className='msp-btn msp-btn-block msp-form-control' onClick={this.refresh} disabled={this.state.isFetching}>↻ Remote Snapshots</button> <button title='Click to Refresh' style={{fontWeight: 'bold'}} className='msp-btn msp-btn-block msp-form-control msp-section-header' onClick={this.refresh} disabled={this.state.isFetching}>↻ Remote Snapshots</button>
<ul style={{ listStyle: 'none' }} className='msp-state-list'> <ul style={{ listStyle: 'none' }} className='msp-state-list'>
{this.state.entries.valueSeq().map(e =><li key={e!.id}> {this.state.entries.valueSeq().map(e =><li key={e!.id}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment