Continiues implementation of floating-vue.
This commit is contained in:
parent
3b98d5bb67
commit
e3b460e590
|
@ -75,6 +75,7 @@ import {
|
|||
ThumbnailHelperPlugin,
|
||||
OrderByHelperPlugin
|
||||
} from './utilities';
|
||||
import 'floating-vue/dist/style.css'
|
||||
|
||||
export default (element) => {
|
||||
|
||||
|
@ -100,7 +101,14 @@ export default (element) => {
|
|||
defaultTooltipAnimated: true
|
||||
});
|
||||
Vue.use(VTooltip, {
|
||||
defaultClass: 'tainacan-tooltip tooltip'
|
||||
themes: {
|
||||
'taianacan-tooltip': {
|
||||
'$extend': 'tooltip',
|
||||
triggers: ['hover', 'focus'],
|
||||
autoHide: true,
|
||||
html: true,
|
||||
},
|
||||
},
|
||||
});
|
||||
Vue.use(VueMasonry);
|
||||
Vue.use(VueBlurHash);
|
||||
|
|
|
@ -20,265 +20,281 @@
|
|||
border-color: var(--tainacan-blue2) !important;
|
||||
}
|
||||
}
|
||||
.tainacan-tooltip {
|
||||
font-size: 0.6875em !important;
|
||||
font-family: var(--tainacan-font-family, inherit) !important;
|
||||
z-index: 999999999 !important;
|
||||
display: block !important;
|
||||
.v-popper--theme-taianacan-tooltip {
|
||||
font-size: 0.6875em;
|
||||
font-family: var(--tainacan-font-family, inherit);
|
||||
top: 0;
|
||||
z-index: 999999999;
|
||||
|
||||
&::after {
|
||||
box-shadow: none;
|
||||
.v-popper__inner {
|
||||
background: #d9eced;
|
||||
color: #226f7d;
|
||||
padding: 10px 12px 12px;
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.v-popper__arrow-outer {
|
||||
border-color: #d9eced;
|
||||
}
|
||||
}
|
||||
// .tainacan-tooltip {
|
||||
// font-size: 0.6875em !important;
|
||||
// font-family: var(--tainacan-font-family, inherit) !important;
|
||||
// z-index: 999999999 !important;
|
||||
// display: block !important;
|
||||
|
||||
.tooltip-inner {
|
||||
background: var(--tainacan-primary);
|
||||
color: var(--tainacan-info-color);
|
||||
font-size: 1em;
|
||||
border-radius: 5px;
|
||||
padding: 10px 14px;
|
||||
max-width: 280px;
|
||||
max-height: 200px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
.tooltip-arrow {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
position: absolute;
|
||||
margin: 5px;
|
||||
border-color: var(--tainacan-primary);
|
||||
z-index: 1;
|
||||
}
|
||||
&[x-placement^="top"] {
|
||||
margin-bottom: 5px;
|
||||
.tooltip-arrow {
|
||||
border-width: 5px 8px 0 8px;
|
||||
border-left-color: transparent !important;
|
||||
border-right-color: transparent !important;
|
||||
border-bottom-color: transparent !important;
|
||||
bottom: -5px;
|
||||
left: calc(50% - 5px);
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
&[x-placement^="bottom"] {
|
||||
margin-top: 5px;
|
||||
.tooltip-arrow {
|
||||
border-width: 0 8px 5px 8px;
|
||||
border-left-color: transparent !important;
|
||||
border-right-color: transparent !important;
|
||||
border-top-color: transparent !important;
|
||||
top: -5px;
|
||||
left: calc(50% - 5px);
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
&[x-placement^="right"] {
|
||||
margin-left: 5px;
|
||||
.tooltip-arrow {
|
||||
border-width: 8px 5px 8px 0;
|
||||
border-left-color: transparent !important;
|
||||
border-top-color: transparent !important;
|
||||
border-bottom-color: transparent !important;
|
||||
left: -5px;
|
||||
top: calc(50% - 5px);
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
&[x-placement^="left"] {
|
||||
margin-right: 5px;
|
||||
.tooltip-arrow {
|
||||
border-width: 8px 0 8px 5px;
|
||||
border-top-color: transparent !important;
|
||||
border-right-color: transparent !important;
|
||||
border-bottom-color: transparent !important;
|
||||
right: -5px;
|
||||
top: calc(50% - 5px);
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
// &::after {
|
||||
// box-shadow: none;
|
||||
// }
|
||||
|
||||
// Metadata type Preview tooltips
|
||||
&.metadata-type-preview-tooltip[x-placement^="bottom"] {
|
||||
top: -19px !important;
|
||||
}
|
||||
&.metadata-type-preview-tooltip[x-placement^="bottom"] .tooltip-inner {
|
||||
max-height: initial !important;
|
||||
}
|
||||
&.metadata-type-preview-tooltip[x-placement^="bottom"] .tooltip-arrow {
|
||||
border-width: 8px 10px 0px 10px !important;
|
||||
border-left-color: transparent !important;
|
||||
border-right-color: transparent !important;
|
||||
border-bottom-color: transparent !important;
|
||||
border-top-color: var(--tainacan-primary) !important;
|
||||
top: initial !important;
|
||||
bottom: -5px !important;
|
||||
}
|
||||
.metadata-type-preview {
|
||||
background: var(--tainacan-primary);
|
||||
padding: 0px 8px;
|
||||
border-radius: 3px;
|
||||
width: 200px;
|
||||
min-height: 100px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
pointer-events: none;
|
||||
cursor: none;
|
||||
flex-wrap: wrap;
|
||||
font-size: 1.25em;
|
||||
// .tooltip-inner {
|
||||
// background: var(--tainacan-primary);
|
||||
// color: var(--tainacan-info-color);
|
||||
// font-size: 1em;
|
||||
// border-radius: 5px;
|
||||
// padding: 10px 14px;
|
||||
// max-width: 280px;
|
||||
// max-height: 200px;
|
||||
// overflow-x: auto;
|
||||
// }
|
||||
// .tooltip-arrow {
|
||||
// width: 0;
|
||||
// height: 0;
|
||||
// border-style: solid;
|
||||
// position: absolute;
|
||||
// margin: 5px;
|
||||
// border-color: var(--tainacan-primary);
|
||||
// z-index: 1;
|
||||
// }
|
||||
// &[x-placement^="top"] {
|
||||
// margin-bottom: 5px;
|
||||
// .tooltip-arrow {
|
||||
// border-width: 5px 8px 0 8px;
|
||||
// border-left-color: transparent !important;
|
||||
// border-right-color: transparent !important;
|
||||
// border-bottom-color: transparent !important;
|
||||
// bottom: -5px;
|
||||
// left: calc(50% - 5px);
|
||||
// margin-top: 0;
|
||||
// margin-bottom: 0;
|
||||
// }
|
||||
// }
|
||||
// &[x-placement^="bottom"] {
|
||||
// margin-top: 5px;
|
||||
// .tooltip-arrow {
|
||||
// border-width: 0 8px 5px 8px;
|
||||
// border-left-color: transparent !important;
|
||||
// border-right-color: transparent !important;
|
||||
// border-top-color: transparent !important;
|
||||
// top: -5px;
|
||||
// left: calc(50% - 5px);
|
||||
// margin-top: 0;
|
||||
// margin-bottom: 0;
|
||||
// }
|
||||
// }
|
||||
// &[x-placement^="right"] {
|
||||
// margin-left: 5px;
|
||||
// .tooltip-arrow {
|
||||
// border-width: 8px 5px 8px 0;
|
||||
// border-left-color: transparent !important;
|
||||
// border-top-color: transparent !important;
|
||||
// border-bottom-color: transparent !important;
|
||||
// left: -5px;
|
||||
// top: calc(50% - 5px);
|
||||
// margin-left: 0;
|
||||
// margin-right: 0;
|
||||
// }
|
||||
// }
|
||||
// &[x-placement^="left"] {
|
||||
// margin-right: 5px;
|
||||
// .tooltip-arrow {
|
||||
// border-width: 8px 0 8px 5px;
|
||||
// border-top-color: transparent !important;
|
||||
// border-right-color: transparent !important;
|
||||
// border-bottom-color: transparent !important;
|
||||
// right: -5px;
|
||||
// top: calc(50% - 5px);
|
||||
// margin-left: 0;
|
||||
// margin-right: 0;
|
||||
// }
|
||||
// }
|
||||
|
||||
.metadata-type-label {
|
||||
font-weight: 600;
|
||||
color: var(--tainacan-turquoise4);
|
||||
width: 100%;
|
||||
font-size: 1em;
|
||||
margin-bottom: 6px;
|
||||
margin-left: -18px;
|
||||
}
|
||||
// // Metadata type Preview tooltips
|
||||
// &.metadata-type-preview-tooltip[x-placement^="bottom"] {
|
||||
// top: -19px !important;
|
||||
// }
|
||||
// &.metadata-type-preview-tooltip[x-placement^="bottom"] .tooltip-inner {
|
||||
// max-height: initial !important;
|
||||
// }
|
||||
// &.metadata-type-preview-tooltip[x-placement^="bottom"] .tooltip-arrow {
|
||||
// border-width: 8px 10px 0px 10px !important;
|
||||
// border-left-color: transparent !important;
|
||||
// border-right-color: transparent !important;
|
||||
// border-bottom-color: transparent !important;
|
||||
// border-top-color: var(--tainacan-primary) !important;
|
||||
// top: initial !important;
|
||||
// bottom: -5px !important;
|
||||
// }
|
||||
// .metadata-type-preview {
|
||||
// background: var(--tainacan-primary);
|
||||
// padding: 0px 8px;
|
||||
// border-radius: 3px;
|
||||
// width: 200px;
|
||||
// min-height: 100px;
|
||||
// display: flex;
|
||||
// align-items: center;
|
||||
// justify-content: center;
|
||||
// pointer-events: none;
|
||||
// cursor: none;
|
||||
// flex-wrap: wrap;
|
||||
// font-size: 1.25em;
|
||||
|
||||
input, select, textarea,
|
||||
.input, .tags, .tag {
|
||||
pointer-events: none;
|
||||
cursor: none;
|
||||
background-color: rgba(255,255,255,0.60) !important;
|
||||
}
|
||||
.autocomplete>.control, .autocomplete>.control>input, .dropdown-content {
|
||||
background-color: #f7fcfd !important;
|
||||
}
|
||||
.taginput {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
input[type="checkbox"]:checked + .check {
|
||||
background: rgba(255,255,255,0.60) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:rgb(69,70,71)' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center !important
|
||||
}
|
||||
textarea {
|
||||
min-height: 70px;
|
||||
}
|
||||
.field {
|
||||
width: 100%;
|
||||
.label {
|
||||
color: var(--tainacan-info-color);
|
||||
font-size: 0.875em;
|
||||
line-height: 1.875em;
|
||||
}
|
||||
}
|
||||
.add-new-term,
|
||||
.collapse-all {
|
||||
font-size: 0.75em;
|
||||
text-decoration: underline;
|
||||
margin: 0.875em 1.5em;
|
||||
}
|
||||
.selected-tags {
|
||||
font-size: 0.75em;
|
||||
}
|
||||
.child-metadata-inputs {
|
||||
margin-left: 5px;
|
||||
padding-left: 16px;
|
||||
padding-top: 2px;
|
||||
border-left: 1px solid var(--tainacan-gray3);
|
||||
// .metadata-type-label {
|
||||
// font-weight: 600;
|
||||
// color: var(--tainacan-turquoise4);
|
||||
// width: 100%;
|
||||
// font-size: 1em;
|
||||
// margin-bottom: 6px;
|
||||
// margin-left: -18px;
|
||||
// }
|
||||
|
||||
.is-last-input {
|
||||
margin-top: -14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// input, select, textarea,
|
||||
// .input, .tags, .tag {
|
||||
// pointer-events: none;
|
||||
// cursor: none;
|
||||
// background-color: rgba(255,255,255,0.60) !important;
|
||||
// }
|
||||
// .autocomplete>.control, .autocomplete>.control>input, .dropdown-content {
|
||||
// background-color: #f7fcfd !important;
|
||||
// }
|
||||
// .taginput {
|
||||
// margin-bottom: 100px;
|
||||
// }
|
||||
// input[type="checkbox"]:checked + .check {
|
||||
// background: rgba(255,255,255,0.60) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:rgb(69,70,71)' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center !important
|
||||
// }
|
||||
// textarea {
|
||||
// min-height: 70px;
|
||||
// }
|
||||
// .field {
|
||||
// width: 100%;
|
||||
// .label {
|
||||
// color: var(--tainacan-info-color);
|
||||
// font-size: 0.875em;
|
||||
// line-height: 1.875em;
|
||||
// }
|
||||
// }
|
||||
// .add-new-term,
|
||||
// .collapse-all {
|
||||
// font-size: 0.75em;
|
||||
// text-decoration: underline;
|
||||
// margin: 0.875em 1.5em;
|
||||
// }
|
||||
// .selected-tags {
|
||||
// font-size: 0.75em;
|
||||
// }
|
||||
// .child-metadata-inputs {
|
||||
// margin-left: 5px;
|
||||
// padding-left: 16px;
|
||||
// padding-top: 2px;
|
||||
// border-left: 1px solid var(--tainacan-gray3);
|
||||
|
||||
// Metadata type textarea has different separators in different spots on interface
|
||||
& .multivalue-separator {
|
||||
color: var(--tainacan-info-color);
|
||||
margin: 0 8px;
|
||||
}
|
||||
& .hierarchy-separator {
|
||||
color: var(--tainacan-info-color);
|
||||
}
|
||||
&.metadata-type-textarea,
|
||||
&.metadata-type-compound {
|
||||
.multivalue-separator {
|
||||
display: block;
|
||||
max-height: 1px;
|
||||
width: 35px;
|
||||
background: var(--tainacan-info-color);
|
||||
content: none;
|
||||
color: transparent;
|
||||
margin: 1em auto;
|
||||
}
|
||||
}
|
||||
// .is-last-input {
|
||||
// margin-top: -14px;
|
||||
// margin-bottom: 10px;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// // Metadata type textarea has different separators in different spots on interface
|
||||
// & .multivalue-separator {
|
||||
// color: var(--tainacan-info-color);
|
||||
// margin: 0 8px;
|
||||
// }
|
||||
// & .hierarchy-separator {
|
||||
// color: var(--tainacan-info-color);
|
||||
// }
|
||||
// &.metadata-type-textarea,
|
||||
// &.metadata-type-compound {
|
||||
// .multivalue-separator {
|
||||
// display: block;
|
||||
// max-height: 1px;
|
||||
// width: 35px;
|
||||
// background: var(--tainacan-info-color);
|
||||
// content: none;
|
||||
// color: transparent;
|
||||
// margin: 1em auto;
|
||||
// }
|
||||
// }
|
||||
|
||||
.tainacan-compound-group {
|
||||
text-align: left;
|
||||
margin-left: 2px;
|
||||
padding-left: 0.875em;
|
||||
border-left: 1px solid var(--tainacan-gray2);
|
||||
// .tainacan-compound-group {
|
||||
// text-align: left;
|
||||
// margin-left: 2px;
|
||||
// padding-left: 0.875em;
|
||||
// border-left: 1px solid var(--tainacan-gray2);
|
||||
|
||||
.tainacan-compound-metadatum .label {
|
||||
text-align: left;
|
||||
margin-bottom: 0.25em;
|
||||
font-size: 1em !important;
|
||||
color: var(--tainacan-info-color);
|
||||
}
|
||||
.tainacan-compound-metadatum p {
|
||||
text-align: left;
|
||||
margin-bottom: 0.75em;
|
||||
font-size: 1em;
|
||||
}
|
||||
.multivalue-separator {
|
||||
display: block;
|
||||
max-height: 1px;
|
||||
width: 35px;
|
||||
background: var(--tainacan-gray2);
|
||||
content: none;
|
||||
color: transparent;
|
||||
margin: 1em auto 1em -0.875em;
|
||||
}
|
||||
}
|
||||
.tainacan-relationship-group {
|
||||
text-align: left;
|
||||
.tainacan-relationship-metadatum {
|
||||
text-align: left;
|
||||
.tainacan-relationship-metadatum-header {
|
||||
text-align: left;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
img {
|
||||
margin-right: 12px;
|
||||
max-width: 28px !important;
|
||||
max-height: 28px;
|
||||
}
|
||||
.label {
|
||||
font-weight: normal;
|
||||
font-size: 1em !important;
|
||||
margin-top: 0;
|
||||
margin-left: 0;
|
||||
margin-bottom: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
.tainacan-metadatum {
|
||||
text-align: left;
|
||||
margin-left: 40px;
|
||||
.label {
|
||||
color: var(--tainacan-gray4);
|
||||
font-size: 1em !important;
|
||||
line-height: 1em;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&>.multivalue-separator {
|
||||
display: block;
|
||||
max-height: 1px;
|
||||
width: calc(100% - 40px);
|
||||
background: var(--tainacan-gray2);
|
||||
content: none;
|
||||
color: transparent;
|
||||
margin: 0.5em 0 0.5em 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// .tainacan-compound-metadatum .label {
|
||||
// text-align: left;
|
||||
// margin-bottom: 0.25em;
|
||||
// font-size: 1em !important;
|
||||
// color: var(--tainacan-info-color);
|
||||
// }
|
||||
// .tainacan-compound-metadatum p {
|
||||
// text-align: left;
|
||||
// margin-bottom: 0.75em;
|
||||
// font-size: 1em;
|
||||
// }
|
||||
// .multivalue-separator {
|
||||
// display: block;
|
||||
// max-height: 1px;
|
||||
// width: 35px;
|
||||
// background: var(--tainacan-gray2);
|
||||
// content: none;
|
||||
// color: transparent;
|
||||
// margin: 1em auto 1em -0.875em;
|
||||
// }
|
||||
// }
|
||||
// .tainacan-relationship-group {
|
||||
// text-align: left;
|
||||
// .tainacan-relationship-metadatum {
|
||||
// text-align: left;
|
||||
// .tainacan-relationship-metadatum-header {
|
||||
// text-align: left;
|
||||
// display: flex;
|
||||
// align-items: center;
|
||||
// img {
|
||||
// margin-right: 12px;
|
||||
// max-width: 28px !important;
|
||||
// max-height: 28px;
|
||||
// }
|
||||
// .label {
|
||||
// font-weight: normal;
|
||||
// font-size: 1em !important;
|
||||
// margin-top: 0;
|
||||
// margin-left: 0;
|
||||
// margin-bottom: 0;
|
||||
// margin-right: 0;
|
||||
// }
|
||||
// }
|
||||
// .tainacan-metadatum {
|
||||
// text-align: left;
|
||||
// margin-left: 40px;
|
||||
// .label {
|
||||
// color: var(--tainacan-gray4);
|
||||
// font-size: 1em !important;
|
||||
// line-height: 1em;
|
||||
// margin-top: 8px;
|
||||
// margin-bottom: 2px;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// &>.multivalue-separator {
|
||||
// display: block;
|
||||
// max-height: 1px;
|
||||
// width: calc(100% - 40px);
|
||||
// background: var(--tainacan-gray2);
|
||||
// content: none;
|
||||
// color: transparent;
|
||||
// margin: 0.5em 0 0.5em 40px;
|
||||
// }
|
||||
// }
|
||||
// }
|
Loading…
Reference in New Issue