13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>The source code</title>
  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  <style type="text/css">
    .highlight { display: block; background-color: #ddd; }
  </style>
  <script type="text/javascript">
    function highlight() {
      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
    }
  </script>
</head>
<body onload="prettyPrint(); highlight();">
  <pre class="prettyprint lang-js"><span id='Ext-grid-plugin-RowEditing'>/**
</span> * @class Ext.grid.plugin.RowEditing
 */
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-background-color'>/**
</span> * @var {color}
 * The background-color of the RowEditor
 */
$grid-row-editor-background-color: $panel-frame-background-color !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-border-color'>/**
</span> * @var {color}
 * The border-color of the RowEditor
 */
$grid-row-editor-border-color: $panel-border-color !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-border-width'>/**
</span> * @var {number}
 * The border-width of the RowEditor
 */
$grid-row-editor-border-width: 1px !default;
 
// private
$grid-row-editor-border: $grid-row-editor-border-width solid $grid-row-editor-border-color !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-padding'>/**
</span> * @var {number/list}
 * The padding of the RowEditor
 */
$grid-row-editor-padding: 4px 0 4px 0 !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-field-spacing'>/**
</span> * @var {number}
 * The amount of space in between the editor fields
 */
$grid-row-editor-field-spacing: 2px !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-button-spacing'>/**
</span> * @var {number}
 * The space between the RowEditor buttons
 */
$grid-row-editor-button-spacing: 4px !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-button-container-border-radius'>/**
</span> * @var {number}
 * The border-radius of the RowEditor button container
 */
$grid-row-editor-button-container-border-radius: 5px !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-button-container-padding'>/**
</span> * @var {number/list}
 * The padding of the RowEditor button container
 */
$grid-row-editor-button-container-padding: 4px !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-error-tip-body-padding'>/**
</span> * @var {number/list}
 * Padding to apply to the body element of the error tooltip
 */
$grid-row-editor-error-tip-body-padding: 5px !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-error-tip-list-style'>/**
</span> * @var {string}
 * The list-style of the error tooltip's list items
 */
$grid-row-editor-error-tip-list-style: disc !default;
 
<span id='Ext-grid-plugin-RowEditing-css_var-S-grid-row-editor-error-tip-list-spacing'>/**
</span> * @var {number}
 * Space to add before each list item on the error tooltip
 */
$grid-row-editor-error-tip-list-spacing: 15px !default;
 
// private
$grid-row-editor-field-padding:
    top($grid-editor-padding)
    max((right($grid-editor-padding) - ceil($grid-row-editor-field-spacing / 2)), 0)
    bottom($grid-editor-padding)
    max((left($grid-editor-padding) - floor($grid-row-editor-field-spacing / 2)), 0);</pre>
</body>
</html>