Commit 20e5195e by Иван Кубота

round table, orange button, button move

parent 21cbbd25
...@@ -327,29 +327,31 @@ Screen.Conference = function() { ...@@ -327,29 +327,31 @@ Screen.Conference = function() {
D.div({cls: ['bottom-buttons', { D.div({cls: ['bottom-buttons', {
hidden: Store.NOT(store.val('callScreenCamerasTune')) hidden: Store.NOT(store.val('callScreenCamerasTune'))
}]}, }]},
D.h('button', { D.div({style: {minWidth:'10px'}},
cls: ['button primary', {nothing: Store.OR(isConnected, isConnecting)}], D.h('button', {
onclick: ()=>{ cls: ['button primary', {hidden: Store.OR(isConnected, isConnecting)}],
isConnecting.set(true); onclick: ()=>{
store.set('connection', true) isConnecting.set(true);
} store.set('connection', true)
}, 'Ready to connect'), }
}, 'Ready to connect'),
D.h('button', {
cls: ['button primary', {nothing: Store.NOT(Store.OR(isConnected, isConnecting))}], D.h('button', {
onclick: function(){ cls: ['button orange', {hidden: Store.NOT(Store.OR(isConnected, isConnecting))}],
var _self = this; onclick: function(){
store.set('connection', false); var _self = this;
_self.style.display = 'none'; store.set('connection', false);
setTimeout(function( ){ _self.style.display = 'none';
store.set('connection', true); setTimeout(function( ){
setTimeout(function() { store.set('connection', true);
_self.style.display = 'block'; setTimeout(function() {
}, 300) _self.style.display = 'block';
}, 300)
}, 300);
} }, 300);
}, 'Reconnect'), }
}, 'Reconnect')
),
D.h('button', { D.h('button', {
cls: ['button orange', {hidden: /*isConnected*/false}], cls: ['button orange', {hidden: /*isConnected*/false}],
......
...@@ -16,11 +16,19 @@ ...@@ -16,11 +16,19 @@
line-height: 1.33; line-height: 1.33;
} }
.table-component--guest-row--guest {
padding: 0 5px;
text-align: center;
cursor: pointer;
min-width: 200px;
}
.table-component--table { .table-component--table {
position: relative; position: relative;
border-radius: 24px; border-radius: 100%;
width: 262px; width: 262px;
height: 77px; height: 262px;
margin: -33px 0;
border: 1px solid #5C5C5C; border: 1px solid #5C5C5C;
} }
...@@ -31,6 +39,7 @@ ...@@ -31,6 +39,7 @@
width: 264px; width: 264px;
min-height: 60px; min-height: 60px;
position: relative; position: relative;
margin-left: -78px;
} }
.table-component--guest-row--guest__user-icon--circle { .table-component--guest-row--guest__user-icon--circle {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment