Skip to content

Commit b8d24f3

Browse files
committed
made the indicator a bit smaller
1 parent b2ff047 commit b8d24f3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/selenium-ide/src/content/indicator.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</style>
3131
</head>
3232
<body>
33-
<div style="display: flex;align-items: center;flex-direction: row;margin: 15px;">
33+
<div style="display: flex;align-items: center;flex-direction: row;margin: 10px;">
3434
<img id="ide-img" style="width: 28px;margin: 0 10px;" />
3535
<div style="height: 28px;border-left: 1px solid #c6c6c6;"></div>
3636
<div id="circle"></div>

packages/selenium-ide/src/content/record-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function addRecordingIndicator() {
188188
recordingIndicator.style.bottom = '36px'
189189
recordingIndicator.style.right = '36px'
190190
recordingIndicator.style.width = '380px'
191-
recordingIndicator.style.height = '60px'
191+
recordingIndicator.style.height = '50px'
192192
recordingIndicator.style['background-color'] = '#f7f7f7'
193193
recordingIndicator.style['box-shadow'] = '0 7px 10px 0 rgba(0,0,0,0.1)'
194194
recordingIndicator.style.transition = 'bottom 100ms linear'

packages/selenium-ide/src/content/targetSelector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class TargetSelector {
5555
const header = doc.createElement('div')
5656
header.setAttribute(
5757
'style',
58-
"pointer-events: none;display: flex;align-items: center;justify-content: center;flex-direction: row;position: fixed;top: 20%;left: 50%;transform: translateX(-50%);background: #f7f7f7;color: #114990;font-size: 22px;font-weight: 200;z-index: 10001;font-family: system, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;box-shadow: 0 7px 10px 0 rgba(0,0,0,0.1);border: 1px black solid; border-radius: 50px;padding: 15px;"
58+
"pointer-events: none;display: flex;align-items: center;justify-content: center;flex-direction: row;position: fixed;top: 20%;left: 50%;transform: translateX(-50%);background: #f7f7f7;color: #114990;font-size: 22px;font-weight: 200;z-index: 10001;font-family: system, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;box-shadow: 0 7px 10px 0 rgba(0,0,0,0.1);border: 1px black solid; border-radius: 50px;padding: 10px;"
5959
)
6060
const img = doc.createElement('img')
6161
img.src = browser.runtime.getURL('/icons/icon_menu64.png')

0 commit comments

Comments
 (0)