summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/bug_report.css
blob: 6366a5150a9ac18aa02f644fec75a28ae868a6c3 (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
.bug-report-label {
  text-align: start;
  vertical-align: text-top;
}

.bug-report-text {
  width: 40em;
  resize: none;
}

.bug-report-button {
  width: 8em;
}

hr {
  border: none;
  height: 1px;
  background: #cccccc;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 33.5em;
}

.thumbnail-list {
  -webkit-margin-start: 1em;
  width: 33.5em;
  display: block;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.image-thumbnail-container {
  display: inline-block;
  border: 2px solid white;
  -webkit-border-radius: 3px;
  z-index: 0;
}

.image-thumbnail-container-selected {
  display: inline-block;
  border: 2px solid green;
  -webkit-border-radius: 3px;
  z-index: 0;
}

.image-thumbnail-container:hover {
  border: 2px solid #B8DAB0;
  z-index: 0;
}

.image-popup {
  width: 50%;
}

.image-thumbnail {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0px;
  border: 2px solid white;
}

.image-thumbnail:hover {
  z-index: 2;
}

.image-thumbnail div {
  display: none;
}

.image-thumbnail img {
  display: block;
  width: 75px;
}

.image-thumbnail:hover div {
    display: block;
    position: absolute;
    top: 130%;
    left:0;
    padding: 1px;
    border: 1px dashed blue;
    background-color: transparent;
    text-align: center
}

.image-thumbnail:hover div img {
  position: absolute;
  width: 400px;
}

th {
  padding-top: 10px;
  color: #233478;
}

#main-panel {
  display: -webkit-box;
}

.formpane {
  margin-right: 20px;
}

body {
  -webkit-user-select: none;
}