diff --git a/_src/components/StatusMirrorList.vue b/_src/components/StatusMirrorList.vue
index d653475..f3aee83 100644
--- a/_src/components/StatusMirrorList.vue
+++ b/_src/components/StatusMirrorList.vue
@@ -50,7 +50,7 @@ onMounted(() => {
@mouseenter="freezedRows[mir.name] = rollCur"
@mouseleave="freezedRows[mir.name] = undefined"
>
-
Name |
+ Name |
{{ mir.name }}{{ mir.is_master ? "" : " [slave]" }}
|
@@ -128,11 +128,11 @@ onMounted(() => {
- Upstream |
+ Upstream |
{{ mir.upstream }} |
- Status |
+ Status |
{{ mir.status }} |
- Size |
+ Size |
{{ mir.size }} |
diff --git a/_src/entrypoints/bs3-polyfill.scss b/_src/entrypoints/bs3-polyfill.scss
index dbaa849..454685d 100644
--- a/_src/entrypoints/bs3-polyfill.scss
+++ b/_src/entrypoints/bs3-polyfill.scss
@@ -24,6 +24,26 @@ html {
display: $display !important;
}
}
+ .d-bs3-def-none {
+ display: none !important;
+ }
+ @media (min-width: 0) {
+ div.d-bs3-def-none {
+ display: block !important;
+ @media (min-width: $screen-lg-min) {
+ display: none !important;
+ }
+ }
+ td,
+ th {
+ &.d-bs3-def-none {
+ display: table-cell !important;
+ @media (min-width: $screen-lg-min) {
+ display: none !important;
+ }
+ }
+ }
+ }
.btn-close {
display: none;
}