Files
doneit-web/src/app/pages/chat/chat.page.scss
T

166 lines
2.6 KiB
SCSS
Raw Normal View History

2021-03-04 18:50:26 +01:00
ion-content{
--background: transparent;
}
:host{
2021-04-23 10:35:53 +01:00
// background: #0782c9;
2021-03-04 18:50:26 +01:00
}
2021-03-05 16:43:17 +01:00
.title-content{
2021-03-05 16:43:17 +01:00
width: 100%;
margin-bottom: 15px;
padding: 0 !important;
background: #fff;
2021-03-05 16:43:17 +01:00
.div-title{
padding: 0!important;
float: left;
}
.title{
font-size: 25px;
}
.div-icon{
2021-04-09 08:59:22 +01:00
display: flex;
2021-07-26 10:48:34 +01:00
width: fit-content;
2021-03-05 16:43:17 +01:00
float: right;
font-size: 35px;
overflow: auto;
padding: 1px;
2021-04-09 08:59:22 +01:00
justify-content: flex-end;
2021-03-05 16:43:17 +01:00
}
.div-icon ion-icon{
float: right;
padding-left: 20px;
}
}
2021-07-26 10:48:34 +01:00
2021-03-05 16:43:17 +01:00
.main-content{
font-family: Roboto;
margin: 0 auto;
background-color: #fff;
2021-03-04 18:50:26 +01:00
border-top-left-radius: 25px;
border-top-right-radius: 25px;
2021-03-29 16:01:58 +01:00
2021-03-15 10:42:19 +01:00
overflow: auto;
2020-12-21 16:37:44 +01:00
2021-03-05 11:58:59 +01:00
.aside-wrapper{
2021-03-05 16:43:17 +01:00
margin: 0 !important;
2021-07-26 22:51:13 +01:00
.title-content{
padding: 30px 20px 0 20px !important;
}
.aside{
2021-07-27 00:01:38 +01:00
padding: 0 !important;
2021-07-26 22:51:13 +01:00
}
2021-03-05 11:58:59 +01:00
}
2020-12-21 16:37:44 +01:00
.iconschatnew-group{
width: 30px;
height: 30px;
object-fit: contain;
margin: 0 5px 0 5px;
}
.iconschatnew-conversation{
width: 30px;
height: 30px;
object-fit: contain;
margin: 0 5px 0 5px;
}
2021-03-05 11:58:59 +01:00
2020-12-21 16:37:44 +01:00
}
.item{
width: 100%;
border-bottom: 1px solid #ebebeb;
2021-07-27 00:01:38 +01:00
padding: 0px 20px 0 20px !important;
2021-07-27 09:14:35 +01:00
overflow: hidden;
2020-12-21 16:37:44 +01:00
.item-icon{
width: 40px;
float: left;
.icon{
margin-top: 10px;
font-size: 40px;
}
}
.item-content{
//width: 317px;
2021-07-27 00:01:38 +01:00
float:right;
2020-12-21 16:37:44 +01:00
}
2021-07-27 00:01:38 +01:00
2020-12-21 16:37:44 +01:00
.item-title-time{
width: 100%;
overflow: auto;
margin-top: 10px;
}
.item-title{
width: calc(100% - 75px);
2020-12-21 16:37:44 +01:00
float: left;
font-size: 15px;
color: #0d89d1;
}
2021-07-27 00:01:38 +01:00
.item-title-active{
color: #fff;
}
2020-12-21 16:37:44 +01:00
.item-date{
width: 75px;
2020-12-21 16:37:44 +01:00
float: right;
font-size: 13px;
color: #797979;
text-align: right;
}
2021-07-27 00:01:38 +01:00
.item-date-active{
color: #fff;
}
2020-12-21 16:37:44 +01:00
.item-description{
font-size: 13px;
color: #000;
}
2021-07-27 00:01:38 +01:00
.item-description-active{
color: #fff;
}
}
2021-09-01 09:38:05 +01:00
2021-07-27 00:01:38 +01:00
.item-active{
color: #fff !important;
background-color: #42b9fe !important;
2020-12-21 16:37:44 +01:00
}
2021-07-27 09:14:35 +01:00
@media only screen and (min-width: 701px) {
2021-03-04 18:50:26 +01:00
.main-content{
2021-07-26 10:48:34 +01:00
2021-03-04 18:50:26 +01:00
.aside-wrapper{
2021-03-29 16:01:58 +01:00
width: 35%;
border-right: 1px solid #d8d8d8;
2021-03-04 18:50:26 +01:00
.aside-title{
2021-03-05 11:58:59 +01:00
font-size: 25px;
2021-03-04 18:50:26 +01:00
}
}
2021-03-11 16:21:09 +01:00
/* .aside{
2021-03-04 18:50:26 +01:00
width: 340px;
2021-03-11 16:21:09 +01:00
} */
2021-03-04 18:50:26 +01:00
.aside-content{
2021-03-29 16:01:58 +01:00
width: 65%;
2021-03-04 18:50:26 +01:00
display: flex !important;
background-color: white;
}
2021-03-05 11:58:59 +01:00
.item{
.item-icon{
width: 10%;
2021-07-27 09:14:35 +01:00
margin-right: 10px !important;
2021-03-05 11:58:59 +01:00
}
.item-content{
width: 90%;
}
}
2021-07-26 10:48:34 +01:00
2021-03-04 18:50:26 +01:00
}
}
2021-07-27 00:01:38 +01:00
.highlight {
color: #fff !important;
background-color: #42b9fe !important;
}