Various style updates (#7972)

* fix card selection dot always being on

* new mapbox styles

* updated styles for field notes

* update bookmark icon

* increase currrent user avatar opactiy

* Clean up info notes

* divider style updates

* divider rule styling

* notice styling

* update revision drawer pane order

* tighten up revision drawer list

* notice copy updates

* revision spacing

* revision date divider styling

* shorter revision date in drawer dropdown

* add no value to revision diffs

* v-detail icons

* revisions styling

* fix sort icon hover

* adjust global and private vertical form spacing

* reduce navigation and v-list sizing

* slightly reduce module and info sidebar size
This commit is contained in:
Ben Haynes
2021-09-10 15:01:58 -04:00
committed by GitHub
parent ff2d6aaa07
commit 28868e60f8
30 changed files with 120 additions and 72 deletions

View File

@@ -104,11 +104,11 @@ function getDefaultMapboxBasemap(): BasemapSource {
const defaultMapboxBasemap: BasemapSource = {
name: 'Mapbox',
type: 'style',
url: 'mapbox://styles/mapbox/light-v10',
url: 'mapbox://styles/directus/cktaiz31c509n18nrxj63zdy6',
};
if (getTheme() === 'dark') {
defaultMapboxBasemap.url = 'mapbox://styles/mapbox/dark-v10';
defaultMapboxBasemap.url = 'mapbox://styles/directus/cktaixyhk2joh17lrb5i8zs22';
}
return defaultMapboxBasemap;