thedesk/app/css/userdata.css

61 lines
1.1 KiB
CSS
Raw Normal View History

2018-01-28 23:22:43 +11:00
/*アイコンをクリックした時とかにでてくるユーザーデータ*/
#his-data {
background-repeat: no-repeat;
background-image: url('/img/loading.svg');
overflow-y: hidden;
}
#his-prof {
float: left;
width: 100px;
}
.his-float {
float: left;
width: calc(50% - 50px);
height: 122px;
overflow-y: scroll;
padding: 5px;
}
#his-data-show {
margin: 50px;
2018-03-14 17:52:55 +11:00
background-color:rgba(255, 255, 255, 0.9);
2018-01-28 23:22:43 +11:00
width: calc(100% - 50px);
height: calc(100% - 50px);
margin-bottom: 0;
padding: 5px;
}
.tab-content {
overflow-y: scroll;
height: calc(100% - 240px)
}
.my-data-width {
2018-06-12 01:44:28 +10:00
width: 10%;
2018-01-28 23:22:43 +11:00
}
2018-03-14 05:31:31 +11:00
.active-back{
2018-03-14 17:52:55 +11:00
background-color: #e6ee9c;
2018-03-14 05:31:31 +11:00
}
2018-05-26 02:37:35 +10:00
#his-name .emojione,#his-name .emoji-img{
width: 20px;
}
2018-03-14 05:31:31 +11:00
2018-01-28 23:22:43 +11:00
/*black theme*/
.blacktheme #his-data-show {
background-color: rgba(0, 0, 0, 0.8);
2018-03-14 05:31:31 +11:00
}
.blacktheme .active-back{
background-color:#757575;
2018-04-16 23:58:14 +10:00
}
/*indigo theme*/
.indigotheme #his-data-show {
background-color: rgba(13, 19, 81,0.8);
}
.indigotheme .active-back{
background-color:#757575;
}
/*brown theme*/
.browntheme #his-data-show {
background-color: rgba(62, 39, 35,0.8);
}
.browntheme .active-back{
background-color:#757575;
2018-01-28 23:22:43 +11:00
}