mirror of https://github.com/Budibase/budibase.git
nocodelowcodelow-codedockerdocker-composeinternal-projectinternal-toolinternal-toolslow-code-developmentlow-code-development-platformopensourceselfhostedweb-devweb-developmentweb-development-toolswebdevwebdevelopmentworkflow-automationautomationdeveloper-tools
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.6 KiB
77 lines
1.6 KiB
/*
|
|
Copyright 2019 Adobe. All rights reserved.
|
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software distributed under
|
|
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
governing permissions and limitations under the License.
|
|
*/
|
|
|
|
.spectrum-Link {
|
|
color: var(--spectrum-link-primary-m-text-color);
|
|
|
|
&:hover {
|
|
color: var(--spectrum-link-primary-m-text-color-hover);
|
|
}
|
|
|
|
&:active {
|
|
color: var(--spectrum-link-primary-m-text-color-down);
|
|
}
|
|
|
|
&:focus-ring {
|
|
color: var(--spectrum-link-primary-m-text-color-key-focus);
|
|
}
|
|
}
|
|
|
|
.spectrum-Link--secondary {
|
|
color: inherit;
|
|
|
|
&:hover {
|
|
color: inherit;
|
|
}
|
|
|
|
&:active {
|
|
color: inherit;
|
|
}
|
|
|
|
&:focus {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.spectrum-Link--overBackground {
|
|
color: var(--spectrum-link-over-background-m-text-color);
|
|
|
|
&:hover {
|
|
color: var(--spectrum-link-over-background-m-text-color-hover);
|
|
}
|
|
|
|
&:active {
|
|
color: var(--spectrum-link-over-background-m-text-color-down);
|
|
}
|
|
|
|
&:focus {
|
|
color: var(--spectrum-link-over-background-m-text-color-key-focus);
|
|
}
|
|
}
|
|
|
|
@media (forced-colors: active) {
|
|
.spectrum-Link--secondary {
|
|
color: linktext;
|
|
|
|
&:hover {
|
|
color: linktext;
|
|
}
|
|
|
|
&:active {
|
|
color: linktext;
|
|
}
|
|
|
|
&:focus {
|
|
color: linktext;
|
|
}
|
|
}
|
|
}
|