Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8963921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:28:00+00:00 2026-06-15T16:28:00+00:00

I am new for sencha touch. I need to set the font size of

  • 0

I am new for sencha touch. I need to set the font size of the index bar
Please see the picture below

enter image description here

Here is my scss file

   $base-color: #1674B6;
$active-color: #BCC8DA;

$index-bar-height: 50em ;



@import 'sencha-touch/default/all';

// You may remove any of the following modules that you
// do not use in order to create a smaller css file.
@include sencha-panel;
@include sencha-buttons;
@include sencha-sheet;
@include sencha-picker;
@include sencha-tabs;
@include sencha-toolbar;
@include sencha-toolbar-forms;
@include sencha-indexbar;
@include sencha-list;
@include sencha-layout;
@include sencha-carousel;
@include sencha-form;
@include sencha-msgbox;
@include sencha-loading-spinner;
@include sencha-list-paging;
@include sencha-list-pullrefresh;
@include sencha-toolbar-ui('cusToolbar', #E1E4ED, 'glossy');
// Your custom code goes here...



@include pictos-iconmask('card2');
@include pictos-iconmask('button3');
@include pictos-iconmask('circle2');
@include pictos-iconmask('circle3');
@include pictos-iconmask('bullseye1');
@include pictos-iconmask('reply');
@include pictos-iconmask('add_black');
@include pictos-iconmask('user_list');
@include pictos-iconmask('user_list2');
@include pictos-iconmask('list');
@include pictos-iconmask('note1');
@include pictos-iconmask('team1');
@include pictos-iconmask('user');




//--Custom GroupBy List css --
.tweet-wrapper {
  h2 { font-weight: bold; padding-bottom: 3px; }
  img { border-radius: 5px; float: left; }
  .tweet {
    font-size: 63%;
    margin-left: 60px;
    min-height: 40px;
  }
  .posted { float: right; }
}




.txtwhite {
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
    font-size: .7em;
    margin-left: 60px;
    min-height: 50px;
      font-weight: bold;

  color:white;

}



h2 { font-weight: bold; padding-bottom: 3px; }
img { border-radius: 5px; float: left; }
.tweet {
    font-size: 70%;
    margin-left: 60px;
    color: #333;
    min-height: 50px;
}
.posted { float: right; }



.x-pullmenu {
    display: -webkit-box!important;
    display: box!important;
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-align: center;
    box-align: center;
    -webkit-box-pack: center;
    box-pack: center;
    position: absolute!important;

}
.x-pullmenu-top {
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;   
}

.x-pullmenu-left {
    top: 0px;
    left: -100px;
    width: 100px;
    height: 100%;
}

    .pullmenu#my-top-menu .x-body {
            background-color: black!important;
        }
        .bottom-menu {
            background-image: url(../images/bottom-menu.png) ;
            background-repeat: no-repeat ;
            background-size: 100% 100% ;
        }

        .menu-top {
            background-image: url(../images/top-menu.png) ;
            background-repeat: no-repeat ;
        }
        .doc-button {
            background-image: url(../images/info.png)!important;
            background-repeat: no-repeat ;
            background-size: 100% 100% ;
            width: 30px ;
            height: 30px ;
            margin: 5px 20px 0 20px;
        }
        .ok-button {
            background-image: url(../images/ok.png)!important;
            background-repeat: no-repeat ;
            background-size: 100% 100% ;
            width: 30px ;
            height: 30px ;
            margin: 5px 0 5px 20px;
        }
        .saving {
            margin-top: 8px; 
        }
        #doc-content {
            font-size: 15px ;
        }
        .doc-opt-label {
            display: inline-block;
            width: 100px ;
        }
        .doc-opt-expl {
            display: inline-block ;
            width: 100% ;
        }
        .pull-menu-doc {
            color: white ;
        }

@import '../global';

/**
 * @class Ext.dataview.IndexBar
 */

/**
 * @var {measurement} $index-bar-width
 * Width of the index bar.
 */
$index-bar-width: 1.1em !default;

/**
 * @var {color} $index-bar-bg-color
 * Background-color of the index bar.
 */
$index-bar-bg-color: hsla(hue($base-color), 10%, 60%, .8) !default;

/**
 * @var {color} $index-bar-color
 * Text color of the index bar.
 */
$index-bar-color: darken(desaturate($base-color, 5%), 15%) !default;

/**
 * Includes default index bar styles.
 */


 @mixin sencha-indexbar {
  .x-indexbar {
    padding: 0 .3em;
    width: $index-bar-width;
    @include display-box;
    @include box-orient(vertical);
    @include box-align(stretch);
    @include box-pack(center);
    position: absolute;
    top: 1.5em;
    right: 0;
    bottom: 1em;
    z-index: 3;
  }

  .x-indexbar-body {
    padding: .3em 0;
  }

  .x-indexbar-pressed .x-indexbar-body {
    @include border-radius(($index-bar-width - .6em)/2);
    background-color: $index-bar-bg-color;
  }

  .x-indexbar-item {
    color: $index-bar-color;
    font-size: 3em;
    text-align: center;
    line-height: 3em;
    font-weight: bold;
    display: block;
  }
}

I need to set the font size to become more bigger.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T16:28:01+00:00Added an answer on June 15, 2026 at 4:28 pm

    From what I can see when I inspect the indexbar, you need to override the css .x-indexbar > font-size :

    enter image description here

    .x-indexbar > div {
      font-size: 1em; // for instance
    }
    

    Hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Sencha Touch, and I need to create a form where you
I'm new to HTML5 and using sencha touch. Please anyone give me a full
I'm totally new to sencha touch and extjs. Here is the scenario: Suppose you
I am new to Sencha Touch framework. I need to load some data from
I am very new to sencha touch. Working with sencha touch to develop bar
I am new for sencha touch. I need to pass json data by using
I am new for sencha touch. I need to add , update a data
New to sencha touch here. I've checked out quite a few tutorials online. I
I new in sencha touch and I make a simple login form wichh accepts
I'm quite new to Sencha-touch and I'm following the getting started video on the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.