summaryrefslogtreecommitdiff
path: root/src/views/Operations/SerialOverLan/SerialOverLan.vue
blob: 33533bf98eb3538dd087c30f1ff5a37ea4695486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<template>
  <b-container fluid="xxl pt-0 m-0">
    <page-title />
    <b-button
      class="btn-primary semi-bold-16px images_add-image-button"
      @click="$bvModal.show('modal-images')"
    >
      {{ $t('pageKvm.addImage') }}</b-button
    >
    <page-section class="mb-0">
      <div class="images">
        <div class="images_desc">
          <span class="regular-12px tretiatry">Подключенные образы:</span>
        </div>
        <div class="images-container">
          <div class="images-container_image">
            <img
              src="@/assets/images/console-images.svg"
              class="images-image"
            />
            <span class="semi-bold-12px">Win-11-2022</span>
            <span class="light-12px">с носителя</span>
          </div>
          <div class="images-container_image">
            <img
              src="@/assets/images/console-images.svg"
              class="images-image"
            />
            <span class="semi-bold-12px">Win-10-2017</span>
            <span class="light-12px">с сервера</span>
          </div>
          <div class="images-container_image">
            <img
              src="@/assets/images/console-images.svg"
              class="images-image"
            />
            <span class="semi-bold-12px">Win-7-2010</span>
            <span class="light-12px">с сервера</span>
          </div>
        </div>
      </div>
      <serial-over-lan-console :is-full-window="false" />
    </page-section>
    <images-modal />
  </b-container>
</template>

<script>
import PageTitle from '@/components/Global/PageTitle';
import PageSection from '@/components/Global/PageSection';
import SerialOverLanConsole from './SerialOverLanConsole';
import ImagesModal from '../Kvm/ImagesModal';

export default {
  name: 'SerialOverLan',
  components: {
    PageSection,
    PageTitle,
    ImagesModal,
    SerialOverLanConsole,
  },
};
</script>
<style lang="scss" scoped>
.images_add-image-button {
  position: absolute;
  top: 95px;
  right: 0px;
  border: none;
  box-shadow: none;
  background-color: $faint-secondary-primary-5;
  color: $red-brand-primary;
  border-radius: 8px;
  margin: 12px 32px;
  width: 236px;
  height: 40px;
  z-index: 1001;
  &:active {
    background-color: $faint-secondary-primary-5-hover !important;
    color: $red-brand-primary-active !important;
    border: none;
  }
  &:focus {
    box-shadow: none !important;
  }
  &:focus-visible {
    box-shadow: none !important;
  }
}
.images {
  display: flex;
  flex-flow: row wrap;
  height: 144px;
}

.images_desc {
  margin: 16px 0 16px 32px;
  width: 100%;
}

.images-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 16px 32px;
}

.images-container_image {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-right: 24px;
}

.images-image {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.semi-bold-12px {
  color: $text-primary;
}
</style>