mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
ae93a6ed07
- Removed all existing SCSS usage of primary color. - Cut down custom styles injection to just be css vars. - Reduced button styles so default button is primary. - Updated button styles to lighten/brighten on hover & active states even when a custom color is set. - Removed unused scss color vars. - Updated default BookStack blue to achieve better accessibility.
14 lines
685 B
PHP
14 lines
685 B
PHP
<div id="entity-selector-wrap">
|
|
<div overlay entity-selector-popup>
|
|
<div class="popup-body small" tabindex="-1">
|
|
<div class="popup-header primary-background">
|
|
<div class="popup-title">{{ trans('entities.entity_select') }}</div>
|
|
<button type="button" class="popup-header-close">x</button>
|
|
</div>
|
|
@include('components.entity-selector', ['name' => 'entity-selector'])
|
|
<div class="popup-footer">
|
|
<button type="button" disabled="true" class="button entity-link-selector-confirm corner-button">{{ trans('common.select') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |