Skip to content

Commit

Permalink
Fix config button
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Dec 13, 2023
1 parent c42486e commit 4ddfde4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 4 additions & 0 deletions resources/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,7 @@
max-height: 18px;
margin-top: 4px;
}
.sf-toolbar-block-config svg path,
.sf-toolbar-block-config svg .sf-svg-path {
fill: #FF2929;
}
9 changes: 4 additions & 5 deletions resources/css/theme_light.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece a {

.sf-toolbar-block .sf-toolbar-status {
background-color: #212529;
border-radius: 9999px;
}

.sf-toolbar-icon .sf-toolbar-status {
border-radius: 0px;
}

.sf-toolbar-block .sf-toolbar-status-green {
Expand All @@ -80,6 +75,10 @@ div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece a {
background-color: #D69E2E;
}

.sf-toolbar-block .sf-toolbar-icon {
color: var(--sf-toolbar-gray-800);
}

.sf-toolbar-block:hover .sf-toolbar-icon,
.sf-toolbar-block.hover .sf-toolbar-icon {
background-color: #fff;
Expand Down
4 changes: 2 additions & 2 deletions resources/views/collectors/config.blade.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@component('telescope-toolbar::item', ['name' => 'ajax1'])
@component('telescope-toolbar::item', ['name' => 'config', 'additional_classes' => 'sf-toolbar-block-right'])

@slot('icon')

@ttIcon('laravel')

<span class="sf-toolbar-value">{{ explode('.', app()->version())[0] }}</span>
<span class="sf-toolbar-value">{{ app()->version() }}</span>

@endslot

Expand Down
2 changes: 1 addition & 1 deletion resources/views/collectors/time.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

@endslot

@endcomponent
@endcomponent

0 comments on commit 4ddfde4

Please sign in to comment.