question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ion-select scrollbar on chrome on windows

See original GitHub issue

Bug Report

Ionic version: [x] 4.x

Current behavior: scrollbar not appear Expected behavior: scrollbar must be showed

Related code:

 <ion-select class="font-size-18" [(ngModel)]="selectedLang" (ionChange)="changeLang()">
          <ion-select-option value="it"><span class="flag-icon flag-icon-it"></span>Italiano</ion-select-option>
          <ion-select-option value="en"><span class="flag-icon flag-icon-en"></span>English</ion-select-option>
          <ion-select-option value="es"><span class="flag-icon flag-icon-es"></span>Espanol</ion-select-option>
          <ion-select-option value="fr"><span class="flag-icon flag-icon-fr"></span>Francais</ion-select-option>
          <ion-select-option value="de"><span class="flag-icon flag-icon-de"></span>German</ion-select-option>
          <ion-select-option value="pt"><span class="flag-icon flag-icon-pt"></span>Portuguese</ion-select-option>
          <ion-select-option value="ru"><span class="flag-icon flag-icon-ru"></span>Russian</ion-select-option>
          <ion-select-option value="ja"><span class="flag-icon flag-icon-ja"></span>Japanese</ion-select-option>
        </ion-select>

Other information:

Ionic info: ionic (Ionic CLI) : 4.10.1 (C:\Users\sante\AppData\Roaming\npm\node_modules\ionic) Ionic Framework : @ionic/angular 4.0.0 @angular-devkit/build-angular : 0.13.0 @angular-devkit/schematics : 7.2.4 @angular/cli : 7.3.0 @ionic/angular-toolkit : 1.3.0

Cordova:

cordova (Cordova CLI) : 8.0.0 Cordova Platforms : android 7.0.0 Cordova Plugins : cordova-plugin-ionic-keyboard 2.1.3, cordova-plugin-ionic-webview 3.1.1, (and 5 other plugins)

System:

Android SDK Tools : 26.0.2 (C:\Users\sante\AppData\Local\Android\Sdk) NodeJS : v10.15.0 (C:\Program Files\nodejs\node.exe) npm : 6.4.1 OS : Windows 10

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:9
  • Comments:10 (1 by maintainers)

github_iconTop GitHub Comments

31reactions
jonathan-chincommented, Feb 25, 2019

experiencing the same thing on Mac, using Chrome

here’s my hotfix css:

.alert-checkbox-group::-webkit-scrollbar {
    width: 1em;
    display: block !important;
}

.alert-checkbox-group::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.alert-checkbox-group::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
9reactions
mriabchenkocommented, May 27, 2019

Had the same issue. @jonathan-chin @Jay031 thank you for your helpfull comments. I’ve added this css to global.scss file to fix the issue.

.alert-radio-group::-webkit-scrollbar, .alert-checkbox-group::-webkit-scrollbar { width: 1em; display: block !important; }

.alert-radio-group::-webkit-scrollbar-track, .alert-checkbox-group::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); }

.alert-radio-group::-webkit-scrollbar-thumb, .alert-checkbox-group::-webkit-scrollbar-thumb { background-color: darkgrey; outline: 1px solid slategrey; }

Read more comments on GitHub >

github_iconTop Results From Across the Web

[SOLVED] How to hide scroll-bar? - Ionic Forum
I want to hide the vertical scroll-bar in an ion-view, and keep the scroll ability. I found some solutions, ...
Read more >
Chrome (windows) does not hide scrollbar - Stack Overflow
I have this scrollable div, which (on my Mac in Chrome) hides the scrollbar when I don't scroll. On windows 8 however, it...
Read more >
Fix Chrome Scrollbar Disappears in Windows 10 ... - YouTube
How to Fix Scroll Bar Is Not Showing in Chrome Error in Windows 10 / Windows 11 # Chrome #Google #HowTo #Mac #BigSur...
Read more >
Scroll bar missing in chrome in Windows 10 / 11 - YouTube
Scroll bar missing in chrome in Windows 11 or 10.
Read more >
Missing Scrollbars in Google Chrome OS - PicMonkey
To fix the issue: Open a Chrome window. In the address bar, enter "chrome://flags," and navigate to that page. Scroll down to Overlay...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found