| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #chatClient {
- background-color: #fff;
- width: 100vw;
- height: inherit;
- min-width: 270px;
- }
- #chatClient #chatManager {
- position: relative;
- height: 44px;
- margin-left: calc(var(--bs-gutter-x) * -0.5);
- margin-right: calc(var(--bs-gutter-x) * -0.5);
- border-bottom: 1px solid #d2d2d2;
- }
- #chatClient #chatManager i {
- font-size: 14px;
- font-style: normal;
- padding-right: 7px;
- }
- #chatClient #chatManager span {
- color: #333;
- }
- #chatClient fieldset {
- position: relative;
- display: block;
- height: calc(100% - 44px);
- padding-top: 10px;
- word-wrap: break-word;
- overflow: hidden;
- }
- #chatClient fieldset #chatNotice {
- display: none;
- color: #000;
- border: 1px solid #a05289;
- font-size: 1rem;
- padding: 5px 10px;
- background: #ffc623;
- }
- #chatClient fieldset #chatLog {
- height: calc(100% - 60px);
- color: #333;
- overflow-y: auto;
- }
- #chatClient fieldset #chatLog em {
- display: block;
- font-style: normal;
- font-size: 14px;
- line-height: 120%;
- color: #222;
- padding: 3px;
- }
- #chatClient fieldset #chatLog p {
- color: #fff;
- border: 1px solid #04090a;
- border-radius: 2px;
- padding: 5px 10px;
- margin-bottom: 7px;
- }
- #chatClient fieldset #chatLog p.alert {
- background: #379fb0;
- }
- #chatClient fieldset #chatLog p.notice {
- background: #1c63a8;
- }
- #chatClient fieldset #chatLog p.warning {
- background: #eab70d;
- }
- #chatClient fieldset #chatLog p.failed {
- background: #eb490b;
- }
- #chatClient fieldset #chatPanel {
- height: 60px;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
- #chatClient fieldset #chatPanel input[type=text] {
- width: 100%;
- padding: 5px;
- }
- #chatClient fieldset #chatPanel input[type=text]:focus-visible {
- outline: none;
- }
- #chatClient fieldset #chatPanel button[type=button] {
- border: none;
- background-color: #116086;
- border-radius: 3px;
- color: #fff;
- font-weight: bold;
- }
|