Merge branch 'feature-toolarea-styling' into develop
commit
96268517aa
|
|
@ -61,7 +61,7 @@
|
|||
}
|
||||
|
||||
[data-component='MessageList'] {
|
||||
background-color: rgba(#fff, 0.9);
|
||||
background-color: rgba(#000, 0.1);
|
||||
height: 91vmin;
|
||||
overflow-y: scroll;
|
||||
padding-top: 5px;
|
||||
|
|
@ -71,10 +71,9 @@
|
|||
margin: 5px;
|
||||
display: flex;
|
||||
word-wrap: break-word;
|
||||
color: rgba(#000, 1.0)
|
||||
|
||||
> .client {
|
||||
background-color: rgba(#fff, 0.9);
|
||||
background-color: rgba(#000, 0.1);
|
||||
border-radius: 5px;
|
||||
padding: 6px;
|
||||
max-width: 215px;
|
||||
|
|
@ -83,17 +82,16 @@
|
|||
|
||||
> .message-text {
|
||||
font-size: 1.3vmin;
|
||||
color: rgba(#000, 1.0);
|
||||
}
|
||||
|
||||
> .message-time {
|
||||
font-size: 1vmin;
|
||||
color: rgba(#777, 1.0)
|
||||
opacity:0.8;
|
||||
}
|
||||
}
|
||||
|
||||
> .response {
|
||||
background-color: rgba(#fff, 0.9);
|
||||
background-color: rgba(#000, 0.1);
|
||||
border-radius: 5px;
|
||||
padding: 6px;
|
||||
max-width: 215px;
|
||||
|
|
@ -102,12 +100,11 @@
|
|||
|
||||
> .message-text {
|
||||
font-size: 1.3vmin;
|
||||
color: rgba(#000, 1.0);
|
||||
}
|
||||
|
||||
> .message-time {
|
||||
font-size: 1vmin;
|
||||
color: rgba(#777, 1.0);
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -116,7 +113,7 @@
|
|||
[data-component='Sender'] {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
background-color: rgba(#fff, 0.9);
|
||||
background-color: rgba(#000, 0.1);
|
||||
height: 6vmin;
|
||||
padding: 0.5vmin;
|
||||
border-radius: 0 0 5px 5px;
|
||||
|
|
@ -125,8 +122,8 @@
|
|||
width: 100%;
|
||||
border: 0;
|
||||
border-radius: 5px;
|
||||
background-color: rgba(#fff, 0.9);
|
||||
color: #000;
|
||||
background-color: rgba(#000, 0.1);
|
||||
color: #fff;
|
||||
height: 30px;
|
||||
padding-left: 10px;
|
||||
font-size: 1.4vmin;
|
||||
|
|
|
|||
|
|
@ -125,8 +125,7 @@
|
|||
float: left;
|
||||
width: auto;
|
||||
border: none;
|
||||
display: block;
|
||||
outline: 0;
|
||||
padding: 0.6vmin;
|
||||
padding: 1vmin;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@
|
|||
right: 0;
|
||||
width: 20%;
|
||||
height: 100%;
|
||||
background-color: #FFF;
|
||||
background-color: rgba(0,0,0,0.1);
|
||||
transition: width 0.3s;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@
|
|||
[data-component='ToolArea'] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #fff;
|
||||
|
||||
> .tabs {
|
||||
display: flex;
|
||||
|
|
@ -84,7 +85,7 @@
|
|||
display: block;
|
||||
padding: 1vmin 0 0.8vmin 0;
|
||||
cursor: pointer;
|
||||
background: rgba(#000, 0.3);
|
||||
background: rgba(0,0,0,0.3);
|
||||
font-weight: bold;
|
||||
transition: background ease 0.2s;
|
||||
text-align: center;
|
||||
|
|
@ -111,7 +112,7 @@
|
|||
height: 100%;
|
||||
display: none;
|
||||
padding: 1vmin;
|
||||
background: #fff;
|
||||
background: rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
> input[type="radio"] {
|
||||
|
|
@ -119,11 +120,12 @@
|
|||
}
|
||||
|
||||
> input[type="radio"]:checked + label {
|
||||
background: #fff;
|
||||
background: rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
> input[type="radio"]:checked + label + .tab {
|
||||
display: block;
|
||||
background: rgba(0,0,0,0.1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue