UNPKG

@dcloudio/uni-debugger

Version:

uni-app debugger

54 lines (45 loc) 1.08 kB
/* * Copyright 2016 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ .paused-status { padding: 6px; border-bottom: 1px solid transparent; border-top: 1px solid rgb(189, 189, 189); background-color: hsl(50, 100%, 95%); color: rgb(107, 97, 48); } .-theme-with-dark-background .paused-status { background-color: hsl(46, 98%, 22%); color: #ccc; } .paused-status.error-reason { background-color: hsl(0, 100%, 97%); color: #6b3b3b; } .status-main { font-weight: bold; padding-left: 15px; position: relative; } .status-sub:not(:empty) { padding-left: 15px; padding-top: 5px; overflow: hidden; text-overflow: ellipsis; } .paused-status.error-reason .status-sub { color: red; line-height: 11px; max-height: 27px; } .status-icon { -webkit-filter: hue-rotate(190deg); position: absolute; left: 0; top: calc(50% - 5px); } .paused-status.error-reason .status-icon { -webkit-filter: none; }