|
|
@@ -17,4 +17,29 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-<style scoped type="less"></style>
|
|
|
+<style scoped lang="less">
|
|
|
+.header_title {
|
|
|
+ // Apply to breadcrumb items and any internal nodes (a, span, router-link's root)
|
|
|
+ :deep(.el-breadcrumb__item),
|
|
|
+ :deep(.el-breadcrumb__item *),
|
|
|
+ :deep(.el-breadcrumb),
|
|
|
+ :deep(.el-breadcrumb a),
|
|
|
+ :deep(.el-breadcrumb a *),
|
|
|
+ :deep(.el-breadcrumb__inner) {
|
|
|
+ -webkit-user-select: none;
|
|
|
+ -ms-user-select: none;
|
|
|
+ user-select: none;
|
|
|
+ -webkit-touch-callout: none;
|
|
|
+ caret-color: transparent;
|
|
|
+ cursor: pointer;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-breadcrumb__item:focus),
|
|
|
+ :deep(.el-breadcrumb__item *:focus),
|
|
|
+ :deep(.el-breadcrumb a:focus) {
|
|
|
+ outline: none;
|
|
|
+ caret-color: transparent;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|