mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	Update Details.vue's button styles
This commit is contained in:
		@@ -20,18 +20,20 @@
 | 
			
		||||
            </p>
 | 
			
		||||
 | 
			
		||||
            <div class="functions">
 | 
			
		||||
                <button v-if="monitor.active" class="btn btn-light" @click="pauseDialog">
 | 
			
		||||
                    <font-awesome-icon icon="pause" /> {{ $t("Pause") }}
 | 
			
		||||
                </button>
 | 
			
		||||
                <button v-if="! monitor.active" class="btn btn-primary" @click="resumeMonitor">
 | 
			
		||||
                    <font-awesome-icon icon="play" /> {{ $t("Resume") }}
 | 
			
		||||
                </button>
 | 
			
		||||
                <router-link :to=" '/edit/' + monitor.id " class="btn btn-secondary">
 | 
			
		||||
                    <font-awesome-icon icon="edit" /> {{ $t("Edit") }}
 | 
			
		||||
                </router-link>
 | 
			
		||||
                <button class="btn btn-danger" @click="deleteDialog">
 | 
			
		||||
                    <font-awesome-icon icon="trash" /> {{ $t("Delete") }}
 | 
			
		||||
                </button>
 | 
			
		||||
                <div class="btn-group" role="group">
 | 
			
		||||
                    <button v-if="monitor.active" class="btn btn-normal" @click="pauseDialog">
 | 
			
		||||
                        <font-awesome-icon icon="pause" /> {{ $t("Pause") }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button v-if="! monitor.active" class="btn btn-primary" @click="resumeMonitor">
 | 
			
		||||
                        <font-awesome-icon icon="play" /> {{ $t("Resume") }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <router-link :to=" '/edit/' + monitor.id " class="btn btn-normal">
 | 
			
		||||
                        <font-awesome-icon icon="edit" /> {{ $t("Edit") }}
 | 
			
		||||
                    </router-link>
 | 
			
		||||
                    <button class="btn btn-danger" @click="deleteDialog">
 | 
			
		||||
                        <font-awesome-icon icon="trash" /> {{ $t("Delete") }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="shadow-box">
 | 
			
		||||
@@ -392,11 +394,6 @@ export default {
 | 
			
		||||
@media (max-width: 550px) {
 | 
			
		||||
    .functions {
 | 
			
		||||
        text-align: center;
 | 
			
		||||
 | 
			
		||||
        button, a {
 | 
			
		||||
            margin-left: 10px !important;
 | 
			
		||||
            margin-right: 10px !important;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .ping-chart-wrapper {
 | 
			
		||||
@@ -439,12 +436,6 @@ export default {
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.functions {
 | 
			
		||||
    button, a {
 | 
			
		||||
        margin-right: 20px;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.shadow-box {
 | 
			
		||||
    padding: 20px;
 | 
			
		||||
    margin-top: 25px;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user