Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/a5d122c112682d2e4ba81eee64ab97c2e031f079 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed button size

pull/3113/head
Keivan Beigi 12 years ago
parent b9b9ad6fb5
commit a5d122c112

@ -16,6 +16,14 @@
.btn {
min-width : 80px;
&.btn-mini{
min-width: 0px;
}
&.btn-icon-only{
min-width: 15px;
}
}
.slide-button {

@ -30,6 +30,10 @@ define(
this.$el.addClass('active');
this.invokeCallback();
}
if(!this.model.get('title')){
this.$el.addClass('btn-icon-only');
}
},
onClick: function () {

@ -24,6 +24,10 @@ define(
this.$el.addClass('active');
this.invokeCallback();
}
if(!this.model.get('title')){
this.$el.addClass('btn-icon-only');
}
},
onClick: function () {

Loading…
Cancel
Save