Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/editor/linkdialog.css
2868 views
1
/*
2
* Copyright 2007 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/**
9
* Styles for the Editor's Edit Link dialog.
10
*
11
* @author [email protected] (Marcos Almeida)
12
*/
13
14
15
.tr-link-dialog-explanation-text {
16
font-size: 83%;
17
margin-top: 15px;
18
}
19
20
.tr-link-dialog-target-input {
21
width: 98%; /* 98% prevents scroll bars in standards mode. */
22
/* Input boxes for URLs and email address should always be LTR. */
23
direction: ltr;
24
}
25
26
.tr-link-dialog-email-warning {
27
text-align: center;
28
color: #c00;
29
font-weight: bold;
30
}
31
32
.tr_pseudo-link {
33
color: #00c;
34
text-decoration: underline;
35
cursor: pointer;
36
}
37
38